summaryrefslogtreecommitdiffstats
path: root/target/jffs2/Config.in
diff options
context:
space:
mode:
authorEric Andersen2005-01-23 12:16:11 +0100
committerEric Andersen2005-01-23 12:16:11 +0100
commitdda90723ce4a6d8c84dbf7c66ef8b2c4e5d67b2c (patch)
treea8dbd06e4860f91530b93a1c1a098aa0beff2760 /target/jffs2/Config.in
parentPatch from acmay: http://bugs.uclibc.org/view.php?id=50 (diff)
downloadbuildroot-dda90723ce4a6d8c84dbf7c66ef8b2c4e5d67b2c.tar.gz
buildroot-dda90723ce4a6d8c84dbf7c66ef8b2c4e5d67b2c.tar.xz
buildroot-dda90723ce4a6d8c84dbf7c66ef8b2c4e5d67b2c.zip
Patch from gtj: http://bugs.uclibc.org/view.php?id=40
0000040: Adds options to jffs2 filesystem creation Brings jffs2 up to the 20041007 build level so it will compile with both 2.4 and 2.6 kernels. Adds ability to specify eraseblock and pad sizes, permissions squash, big/little endian and device table in the configuration. Also adds capability to copy the resulting image to a secondary location like a tftp server's root directory. mtd.patch adds capabilities of the previously attached patch plus allows you to compile a version of the utilities to run on the target system. So now there's a set of config options under package to compile the utils for distribution to the target and a set of config options under target to create a jffs2 filesystem.
Diffstat (limited to 'target/jffs2/Config.in')
-rw-r--r--target/jffs2/Config.in58
1 files changed, 56 insertions, 2 deletions
diff --git a/target/jffs2/Config.in b/target/jffs2/Config.in
index 0d79dd1ff..4f5edac4c 100644
--- a/target/jffs2/Config.in
+++ b/target/jffs2/Config.in
@@ -1,6 +1,60 @@
-config BR2_TARGET_ROOTFS_JFFS2
- bool "jffs2 root filesystem for the target device"
+
+menuconfig BR2_TARGET_ROOTFS_JFFS2
+ bool "Build jffs2 root filesystem for the target device"
default n
help
Build a jffs2 root filesystem
+config BR2_TARGET_ROOTFS_JFFS2_EBSIZE
+ hex "Erase block size"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+ default 0x20000
+
+config BR2_TARGET_ROOTFS_JFFS2_PAD
+ bool "Pad output"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+
+config BR2_TARGET_ROOTFS_JFFS2_PADSIZE
+ hex "Pad output size (0x0 = to end of EB)"
+ depends on BR2_TARGET_ROOTFS_JFFS2_PAD
+ default 0x0
+ help
+ Set to 0x0 to pad to end of erase block.
+
+choice
+ prompt "Endianess"
+ default BR2_TARGET_ROOTFS_JFFS2_LE
+ depends on BR2_TARGET_ROOTFS_JFFS2
+
+config BR2_TARGET_ROOTFS_JFFS2_LE
+ bool "little-endian"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+
+config BR2_TARGET_ROOTFS_JFFS2_BE
+ bool "big-endian"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+
+endchoice
+
+config BR2_TARGET_ROOTFS_JFFS2_SQUASH
+ bool "Make all files be owned by root"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+
+config BR2_TARGET_ROOTFS_JFFS2_DEVFILE
+ string "Location of device table file"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+ default "target/default/device_table.txt"
+
+config BR2_TARGET_ROOTFS_JFFS2_OUTPUT
+ string "Output File"
+ depends on BR2_TARGET_ROOTFS_JFFS2
+ default "$(IMAGE).jffs2"
+
+config BR2_TARGET_ROOTFS_JFFS2_COPYTO
+ string "also copy the image to..."
+ depends on BR2_TARGET_ROOTFS_JFFS2
+ default ""
+ help
+ Copies the resulting image to a secondary location.
+
+