From 4c4768b2f79d984a09acc7695a481e2ca281aeb2 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 9 Oct 2004 04:34:21 +0000 Subject: Fix it so we once again build the target root_fs --- Config.in | 1 + Makefile | 1 + target/Config.in | 3 +++ target/cramfs/Config.in | 2 +- target/ext2/Config.in | 6 ++++++ target/ext2/Makefile.in | 3 +++ target/jffs2/Config.in | 6 ++++++ target/jffs2/Makefile.in | 3 +++ 8 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 target/ext2/Config.in create mode 100644 target/ext2/Makefile.in create mode 100644 target/jffs2/Config.in create mode 100644 target/jffs2/Makefile.in diff --git a/Config.in b/Config.in index be95fbbe5..076596223 100644 --- a/Config.in +++ b/Config.in @@ -67,4 +67,5 @@ source "toolchain/Config.in" source "package/Config.in" +source "target/Config.in" diff --git a/Makefile b/Makefile index 90443f094..8eb91bac7 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,7 @@ world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS) include toolchain/*/*.mk include package/*/*.mk +include target/*/*.mk ############################################################# # 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 -- cgit v1.2.3