source "package/Config.in"
+source "target/Config.in"
include toolchain/*/*.mk
include package/*/*.mk
+include target/*/*.mk
#############################################################
#
menu "Target Options"
source "target/cramfs/Config.in"
+source "target/ext2/Config.in"
+source "target/jffs2/Config.in"
+source "target/squashfs/Config.in"
endmenu
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
--- /dev/null
+config BR2_TARGET_ROOTFS_EXT2
+ bool "ext2 root filesystem for the target device"
+ default y
+ help
+ Build an ext2 root filesystem
+
--- /dev/null
+ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2)),y)
+TARGETS+=ext2root
+endif
--- /dev/null
+config BR2_TARGET_ROOTFS_JFFS2
+ bool "jffs2 root filesystem for the target device"
+ default n
+ help
+ Build a jffs2 root filesystem
+
--- /dev/null
+ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2)),y)
+TARGETS+=jffs2root
+endif