From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Wed, 20 May 2015 17:30:18 +0200 Subject: [PATCH] ARM: stm32: do not try to use a ramdisk in defconfig In-Reply-To: <555A0545.1050505@st.com> References: <2564815.ICm4KsbZzD@wuerfel> <555A0545.1050505@st.com> Message-ID: <3760889.V3O5PjA5ar@wuerfel> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Monday 18 May 2015 17:29:09 Maxime Coquelin wrote: > > On 05/18/2015 05:19 PM, Arnd Bergmann wrote: > > The original stm32 defconfig file looks for a ./rootfs.cpio file, > > but that breaks with > > > > ../scripts/gen_initramfs_list.sh: Cannot open './rootfs.cpio' > > > > when trying to build this kernel. Anybody who relies on the > > current behavior should change their build scripts to append > > the initramfs manually, as this patch removes that default > > in order to help autmatic testing. > > > > Signed-off-by: Arnd Bergmann > > --- > > I'm applying this to the next/defconfig branch directly, to get the > > kernelci builder to succeed on this config. > > > > diff --git a/arch/arm/configs/stm32_defconfig b/arch/arm/configs/stm32_defconfig > > index af757925d0ae..fab9cf9bff02 100644 > > --- a/arch/arm/configs/stm32_defconfig > > +++ b/arch/arm/configs/stm32_defconfig > > @@ -2,7 +2,6 @@ CONFIG_NO_HZ_IDLE=y > > CONFIG_HIGH_RES_TIMERS=y > > CONFIG_LOG_BUF_SHIFT=16 > > CONFIG_BLK_DEV_INITRD=y > > -CONFIG_INITRAMFS_SOURCE="./rootfs.cpio" > > CONFIG_CC_OPTIMIZE_FOR_SIZE=y > > # CONFIG_UID16 is not set > > # CONFIG_BASE_FULL is not set > > > > Sorry, I forgot to remove it. > > Thanks for fixing the issue: > Acked-by: Maxime Coquelin > Applied the patch now, thanks! Arnd