diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-07-16 09:38:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-07-16 09:38:27 +0000 |
commit | 87587736e232ce68de6cba7ef310b4b78028ded8 (patch) | |
tree | a81e4631da79033ec1f448c555488a448831804b | |
parent | 98230997185e1ae563782268ce38aca6e858c8d7 (diff) | |
download | upstream-87587736e232ce68de6cba7ef310b4b78028ded8.tar.gz upstream-87587736e232ce68de6cba7ef310b4b78028ded8.tar.bz2 upstream-87587736e232ce68de6cba7ef310b4b78028ded8.zip |
Config.in: fix depends syntax
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37367
-rw-r--r-- | Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -141,14 +141,14 @@ menu "Target Images" config TARGET_ROOTFS_INCLUDE_KERNEL bool "include kernel in rootfs" - depends TARGET_ROOTFS_UBIFS || TARGET_ROOTFS_EXT4FS + depends on TARGET_ROOTFS_UBIFS || TARGET_ROOTFS_EXT4FS default n if USES_UBIFS help Include the kernel image in the rootfs config TARGET_ROOTFS_INCLUDE_DTB bool "include dtb in rootfs" - depends TARGET_ROOTFS_UBIFS || TARGET_ROOTFS_EXT4FS + depends on TARGET_ROOTFS_UBIFS || TARGET_ROOTFS_EXT4FS default n if USES_UBIFS help Include the device tree blob file in the rootfs |