Browse Source

Fix it so we once again build the target root_fs

Eric Andersen 21 years ago
parent
commit
275fcee617
2 changed files with 9 additions and 0 deletions
  1. 6 0
      target/squashfs/Config.in
  2. 3 0
      target/squashfs/Makefile.in

+ 6 - 0
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
+

+ 3 - 0
target/squashfs/Makefile.in

@@ -0,0 +1,3 @@
+ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS)),y)
+TARGETS+=squashfsroot
+endif