diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-05-18 17:19:16 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2015-05-20 17:29:48 +0200 |
commit | addcbe2ae91ceaff149ceb07cf61d1bb3998276e (patch) | |
tree | 1c41765173fc8f69b2e38af09fa1752617e8e9ba /arch/arm/configs | |
parent | c4e24bfc405a94c3fbdf82d5650793473ab8088b (diff) |
ARM: stm32: do not try to use a ramdisk in defconfig
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 <arnd@arndb.de>
Acked-by: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Diffstat (limited to 'arch/arm/configs')
-rw-r--r-- | arch/arm/configs/stm32_defconfig | 1 |
1 files changed, 0 insertions, 1 deletions
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 |