diff options
author | Andre Heider <a.heider@gmail.com> | 2018-09-24 15:53:25 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-09-29 17:23:11 +0200 |
commit | 7b76219e157ba3aafa7bcdcac2dd7fef9e9623d9 (patch) | |
tree | cce71164ef81fd97db5aaa83ca3bd9dbed424570 /config | |
parent | 247ef4d98bab16a55b046b41e5974234b71e076d (diff) | |
download | upstream-7b76219e157ba3aafa7bcdcac2dd7fef9e9623d9.tar.gz upstream-7b76219e157ba3aafa7bcdcac2dd7fef9e9623d9.tar.bz2 upstream-7b76219e157ba3aafa7bcdcac2dd7fef9e9623d9.zip |
sunxi: fix build without ext4 rootfs
The sdcard image generation uses CONFIG_TARGET_ROOTFS_PARTSIZE, which is
currently bound to TARGET_ROOTFS_EXT4FS on this target.
Since the rootfs is squashfs anyway, allow deselecting of the ext4fs
one.
Sort the target list alphabetically while here.
Signed-off-by: Andre Heider <a.heider@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-images.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/Config-images.in b/config/Config-images.in index 6242e36d34..6fa9a67cb6 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -273,7 +273,7 @@ menu "Target Images" config TARGET_ROOTFS_PARTSIZE int "Root filesystem partition size (in MB)" - depends on GRUB_IMAGES || USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_rb532 || TARGET_mvebu || TARGET_uml + depends on GRUB_IMAGES || USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_mvebu || TARGET_rb532 || TARGET_sunxi || TARGET_uml default 256 help Select the root filesystem partition size. |