From: Andrea Adami <andrea.adami@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: [meta-handheld][PATCH] zaurus: use mkfs.jffs2 -n option only for NAND
Date: Mon, 14 Oct 2013 23:34:28 +0200 [thread overview]
Message-ID: <1381786468-9072-1-git-send-email-andrea.adami@gmail.com> (raw)
And remove it for collie (NOR).
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
conf/machine/akita.conf | 2 +-
conf/machine/c7x0.conf | 2 +-
conf/machine/collie.conf | 4 ++--
conf/machine/poodle.conf | 2 +-
conf/machine/spitz.conf | 4 ++--
conf/machine/tosa.conf | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/conf/machine/akita.conf b/conf/machine/akita.conf
index 12a2fe9..e6f020b 100644
--- a/conf/machine/akita.conf
+++ b/conf/machine/akita.conf
@@ -11,7 +11,7 @@ require conf/machine/include/tune-xscale.inc
PACKAGE_EXTRA_ARCHS_tune-xscale += "iwmmxt"
MACHINE_FEATURES += "iwmmxt"
-EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x20000"
+EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x20000 -n"
EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
# UBI: max akita (128-7 MiB = 968 PEBs)
diff --git a/conf/machine/c7x0.conf b/conf/machine/c7x0.conf
index ffa998d..08a528e 100644
--- a/conf/machine/c7x0.conf
+++ b/conf/machine/c7x0.conf
@@ -11,7 +11,7 @@
require conf/machine/include/zaurus.inc
require conf/machine/include/tune-xscale.inc
-EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000"
+EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000 -n"
EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
# UBI: max c7x0 (128-7 MiB = 7744 PEBs)
diff --git a/conf/machine/collie.conf b/conf/machine/collie.conf
index 26bc257..9f45f56 100644
--- a/conf/machine/collie.conf
+++ b/conf/machine/collie.conf
@@ -5,8 +5,8 @@
require conf/machine/include/zaurus.inc
require conf/machine/include/tune-strongarm1100.inc
-EXTRA_IMAGECMD_jffs2 = "-p 14680064 -l -e 0x20000 -n"
-EXTRA_IMAGECMD_sum.jffs2 = "-p -l -e 0x20000 -n"
+EXTRA_IMAGECMD_jffs2 = "-p 14680064 -l -e 0x20000"
+EXTRA_IMAGECMD_sum.jffs2 = "-p -l -e 0x20000"
# UBI: max collie (14.125 = 113 PEBs)
# 14.125 x 1024 : 128 = 113 PEBs
diff --git a/conf/machine/poodle.conf b/conf/machine/poodle.conf
index 53dbc4a..ce3c8b3 100644
--- a/conf/machine/poodle.conf
+++ b/conf/machine/poodle.conf
@@ -8,7 +8,7 @@
require conf/machine/include/zaurus.inc
require conf/machine/include/tune-xscale.inc
-EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000"
+EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000 -n"
EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
# UBI: max poodle (64-7 MiB = 3648 PEBs)
diff --git a/conf/machine/spitz.conf b/conf/machine/spitz.conf
index 6a74165..0ecce8b 100644
--- a/conf/machine/spitz.conf
+++ b/conf/machine/spitz.conf
@@ -12,7 +12,7 @@
#
# SL-C3000 (16-7 MiB = 576 PEBs)
# 9 x 1024 : 16 = 576 PEBs
-# EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000"
+# EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000 -n"
# MKUBIFS_ARGS = "-m 512 -e 15872 -c 576 -x zlib"
# UBINIZE_ARGS = "-m 512 -p 16384 -s 256"
@@ -22,7 +22,7 @@ require conf/machine/include/tune-xscale.inc
MACHINE_FEATURES += "iwmmxt"
PACKAGE_EXTRA_ARCHS_tune-xscale += "iwmmxt"
-EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x20000"
+EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x20000 -n"
EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
# UBI: max spitz (128-7 MiB = 968 PEBs)
diff --git a/conf/machine/tosa.conf b/conf/machine/tosa.conf
index 0ec93c7..3c19225 100644
--- a/conf/machine/tosa.conf
+++ b/conf/machine/tosa.conf
@@ -8,7 +8,7 @@
require conf/machine/include/zaurus.inc
require conf/machine/include/tune-xscale.inc
-EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000"
+EXTRA_IMAGECMD_jffs2 = "-p -l -e 0x4000 -n"
EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
# UBI: max tosa (128-7 MiB = 7744 PEBs)
--
1.8.1.5
next reply other threads:[~2013-10-14 21:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-14 21:34 Andrea Adami [this message]
2013-10-14 21:45 ` [meta-handheld][PATCH] zaurus: use mkfs.jffs2 -n option only for NAND Andrea Adami
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1381786468-9072-1-git-send-email-andrea.adami@gmail.com \
--to=andrea.adami@gmail.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.