diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-10-09 04:34:21 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-10-09 04:34:21 +0000 |
commit | 4c4768b2f79d984a09acc7695a481e2ca281aeb2 (patch) | |
tree | 564d9f1d477d450c1b60677ada3c30f3981ae0c4 /target/jffs2 | |
parent | 6c2a7c0359b432a75fddd26de5e11660a5661ad7 (diff) |
Fix it so we once again build the target root_fs
Diffstat (limited to 'target/jffs2')
-rw-r--r-- | target/jffs2/Config.in | 6 | ||||
-rw-r--r-- | target/jffs2/Makefile.in | 3 |
2 files changed, 9 insertions, 0 deletions
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 |