summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-10-09 04:46:15 +0000
committerEric Andersen <andersen@codepoet.org>2004-10-09 04:46:15 +0000
commit275fcee617c8a7114f93488b86f904d4a9059122 (patch)
tree7a6fe97d2f6704cc3940eaa5e136267442cbfcf4 /target
parent4c4768b2f79d984a09acc7695a481e2ca281aeb2 (diff)
downloadbuildroot-novena-275fcee617c8a7114f93488b86f904d4a9059122.tar.gz
buildroot-novena-275fcee617c8a7114f93488b86f904d4a9059122.zip
Fix it so we once again build the target root_fs
Diffstat (limited to 'target')
-rw-r--r--target/squashfs/Config.in6
-rw-r--r--target/squashfs/Makefile.in3
2 files changed, 9 insertions, 0 deletions
diff --git a/target/squashfs/Config.in b/target/squashfs/Config.in
new file mode 100644
index 000000000..5ee392644
--- /dev/null
+++ b/target/squashfs/Config.in
@@ -0,0 +1,6 @@
+config BR2_TARGET_ROOTFS_SQUASHFS
+ bool "squashfs root filesystem for the target device"
+ default n
+ help
+ Build a squashfs root filesystem
+
diff --git a/target/squashfs/Makefile.in b/target/squashfs/Makefile.in
new file mode 100644
index 000000000..2278d720c
--- /dev/null
+++ b/target/squashfs/Makefile.in
@@ -0,0 +1,3 @@
+ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS)),y)
+TARGETS+=squashfsroot
+endif