diff mbox series

[1/1] utils/genrandconfig: disable cramfs images

Message ID 20230709145118.1163585-1-bernd@kuhls.net
State Accepted
Headers show
Series [1/1] utils/genrandconfig: disable cramfs images | expand

Commit Message

Bernd Kuhls July 9, 2023, 2:51 p.m. UTC
Fixes build error:

  warning: estimate of required size (upper bound) is 1374MB, but
  maximum image size is 272MB, we might die prematurely
  mkcramfs: filesystem too big

Fixes:
http://autobuild.buildroot.net/results/d47/d47f9b462707dffe1b6665f143701303b04e2adc/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 utils/genrandconfig | 3 +++
 1 file changed, 3 insertions(+)

Comments

Thomas Petazzoni July 9, 2023, 4:30 p.m. UTC | #1
On Sun,  9 Jul 2023 16:51:18 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:

> Fixes build error:
> 
>   warning: estimate of required size (upper bound) is 1374MB, but
>   maximum image size is 272MB, we might die prematurely
>   mkcramfs: filesystem too big
> 
> Fixes:
> http://autobuild.buildroot.net/results/d47/d47f9b462707dffe1b6665f143701303b04e2adc/
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
>  utils/genrandconfig | 3 +++
>  1 file changed, 3 insertions(+)

Applied to master, thanks.

Thomas
Peter Korsgaard July 17, 2023, 1:04 p.m. UTC | #2
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:

 > Fixes build error:
 >   warning: estimate of required size (upper bound) is 1374MB, but
 >   maximum image size is 272MB, we might die prematurely
 >   mkcramfs: filesystem too big

 > Fixes:
 > http://autobuild.buildroot.net/results/d47/d47f9b462707dffe1b6665f143701303b04e2adc/

 > Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Committed to 2023.02.x and 2023.05.x, thanks.
diff mbox series

Patch

diff --git a/utils/genrandconfig b/utils/genrandconfig
index 2b0baedf31..0938260c1b 100755
--- a/utils/genrandconfig
+++ b/utils/genrandconfig
@@ -512,6 +512,9 @@  def fixup_config(sysinfo, configfile):
         configlines.remove('BR2_TARGET_OPTEE_OS=y\n')
         configlines.remove('BR2_TARGET_OPTEE_OS_PLATFORM=""\n')
 
+    if 'BR2_TARGET_ROOTFS_CRAMFS=y\n' in configlines:
+        configlines.remove('BR2_TARGET_ROOTFS_CRAMFS=y\n')
+
     if 'BR2_TARGET_ROOTFS_EXT2=y\n' in configlines and \
        'BR2_TARGET_ROOTFS_EXT2_SIZE="60M"\n' in configlines:
         configlines.remove('BR2_TARGET_ROOTFS_EXT2_SIZE="60M"\n')