diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in | 3 | ||||
-rw-r--r-- | target/cramfs/Config.in | 2 | ||||
-rw-r--r-- | target/ext2/Config.in | 6 | ||||
-rw-r--r-- | target/ext2/Makefile.in | 3 | ||||
-rw-r--r-- | target/jffs2/Config.in | 6 | ||||
-rw-r--r-- | target/jffs2/Makefile.in | 3 |
6 files changed, 22 insertions, 1 deletions
diff --git a/target/Config.in b/target/Config.in index dbc631725..cd67a718f 100644 --- a/target/Config.in +++ b/target/Config.in @@ -3,6 +3,9 @@ menu "Target Options" source "target/cramfs/Config.in" +source "target/ext2/Config.in" +source "target/jffs2/Config.in" +source "target/squashfs/Config.in" endmenu diff --git a/target/cramfs/Config.in b/target/cramfs/Config.in index 2ba1cdece..c9b1fb9f1 100644 --- a/target/cramfs/Config.in +++ b/target/cramfs/Config.in @@ -1,5 +1,5 @@ config BR2_TARGET_ROOTFS_CRAMFS - bool "Build a cramfs root filesystem for the target device" + bool "cramfs root filesystem for the target device" default n help Build a cramfs root filesystem diff --git a/target/ext2/Config.in b/target/ext2/Config.in new file mode 100644 index 000000000..7e137ae41 --- /dev/null +++ b/target/ext2/Config.in @@ -0,0 +1,6 @@ +config BR2_TARGET_ROOTFS_EXT2 + bool "ext2 root filesystem for the target device" + default y + help + Build an ext2 root filesystem + diff --git a/target/ext2/Makefile.in b/target/ext2/Makefile.in new file mode 100644 index 000000000..990407718 --- /dev/null +++ b/target/ext2/Makefile.in @@ -0,0 +1,3 @@ +ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2)),y) +TARGETS+=ext2root +endif diff --git a/target/jffs2/Config.in b/target/jffs2/Config.in new file mode 100644 index 000000000..0d79dd1ff --- /dev/null +++ b/target/jffs2/Config.in @@ -0,0 +1,6 @@ +config BR2_TARGET_ROOTFS_JFFS2 + bool "jffs2 root filesystem for the target device" + default n + help + Build a jffs2 root filesystem + diff --git a/target/jffs2/Makefile.in b/target/jffs2/Makefile.in new file mode 100644 index 000000000..31452eba8 --- /dev/null +++ b/target/jffs2/Makefile.in @@ -0,0 +1,3 @@ +ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2)),y) +TARGETS+=jffs2root +endif |