From 583d99cee45e4198b872a44a3932b9a58c4d7239 Mon Sep 17 00:00:00 2001 From: Antony Pavlov Date: Mon, 5 Dec 2016 11:28:29 +0300 Subject: MIPS: qemu-malta_defconfig: set MAX_IMAGE_SIZE = 4 MiB If barebox binary image size exceeds the 4 MiB then qemu exits with the 'Could not load MIPS bios' message. Signed-off-by: Antony Pavlov Signed-off-by: Sascha Hauer --- arch/mips/configs/qemu-malta_defconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'arch') diff --git a/arch/mips/configs/qemu-malta_defconfig b/arch/mips/configs/qemu-malta_defconfig index 004adacf8f..9671e93dc0 100644 --- a/arch/mips/configs/qemu-malta_defconfig +++ b/arch/mips/configs/qemu-malta_defconfig @@ -1,6 +1,7 @@ CONFIG_BUILTIN_DTB=y CONFIG_BUILTIN_DTB_NAME="qemu-malta" CONFIG_PBL_IMAGE=y +CONFIG_BAREBOX_MAX_IMAGE_SIZE=0x400000 CONFIG_STACK_SIZE=0x7000 CONFIG_EXPERIMENTAL=y CONFIG_BAUDRATE=38400 -- cgit v1.2.3 From 124f6eb59141cfbd873ee62be56ecfb3bab7057c Mon Sep 17 00:00:00 2001 From: Ulrich Ölmann Date: Thu, 1 Dec 2016 10:19:54 +0100 Subject: x86: update boot message "UBOOT2" to "BAREBOX" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ulrich Ölmann Signed-off-by: Sascha Hauer --- arch/x86/boot/boot_hdisk.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch') diff --git a/arch/x86/boot/boot_hdisk.S b/arch/x86/boot/boot_hdisk.S index 143336d3b4..6f98197512 100644 --- a/arch/x86/boot/boot_hdisk.S +++ b/arch/x86/boot/boot_hdisk.S @@ -164,7 +164,7 @@ output_message: .section .boot_data -notification_string: .asciz "UBOOT2 " +notification_string: .asciz "BAREBOX " chs_string: .asciz "CHS " jmp_string: .asciz "JMP " -- cgit v1.2.3 From c8cbc66914764d43545b9d1128e33cf8b063d7e7 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-König Date: Fri, 16 Dec 2016 10:02:49 +0100 Subject: ARM: mvebu: enable MMU in defconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enabling the MMU (and so the caches) gives a nice performance boost, so opt in for mvebu_defconfig. Signed-off-by: Uwe Kleine-König Signed-off-by: Sascha Hauer --- arch/arm/configs/mvebu_defconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'arch') diff --git a/arch/arm/configs/mvebu_defconfig b/arch/arm/configs/mvebu_defconfig index 39e7ef1798..dab3d7a45e 100644 --- a/arch/arm/configs/mvebu_defconfig +++ b/arch/arm/configs/mvebu_defconfig @@ -10,6 +10,7 @@ CONFIG_MACH_PLATHOME_OPENBLOCKS_A6=y CONFIG_MACH_USI_TOPKICK=y CONFIG_AEABI=y CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y +CONFIG_MMU=y CONFIG_TEXT_BASE=0x0 CONFIG_MALLOC_SIZE=0x0 CONFIG_MALLOC_TLSF=y -- cgit v1.2.3