浏览代码

Fix it so we once again build the target root_fs

Eric Andersen 21 年之前
父节点
当前提交
275fcee617
共有 2 个文件被更改,包括 9 次插入0 次删除
  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