generic: fix GLUON_DEBUG on targets without configurable rootfs size

Fixes: c3435607e1 ("generic: increase RootFS size when GLUON_DEBUG is enabled")
This commit is contained in:
Matthias Schiffer 2020-02-04 02:04:36 +01:00
parent ba276dcfbd
commit af21f912b2
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C

View File

@ -54,9 +54,10 @@ end
if envtrue.GLUON_DEBUG then if envtrue.GLUON_DEBUG then
config 'CONFIG_DEBUG=y' config 'CONFIG_DEBUG=y'
config 'CONFIG_NO_STRIP=y' config 'CONFIG_NO_STRIP=y'
config 'CONFIG_TARGET_ROOTFS_PARTSIZE=500'
config '# CONFIG_USE_STRIP is not set' config '# CONFIG_USE_STRIP is not set'
config '# CONFIG_USE_SSTRIP is not set' config '# CONFIG_USE_SSTRIP is not set'
try_config 'CONFIG_TARGET_ROOTFS_PARTSIZE=500'
end end