* [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel
@ 2015-11-17 16:37 Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 2/3] configs/qemu: fix networking for sparc64 Gustavo Zacarias
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-11-17 16:37 UTC (permalink / raw)
To: buildroot
Now that uclibc-ng was bumped to version 1.0.9 nothing prevents x86
from working correctly.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/x86/{linux-4.2.config => linux-4.3.config} | 0
configs/qemu_x86_defconfig | 10 +++++-----
2 files changed, 5 insertions(+), 5 deletions(-)
rename board/qemu/x86/{linux-4.2.config => linux-4.3.config} (100%)
diff --git a/board/qemu/x86/linux-4.2.config b/board/qemu/x86/linux-4.3.config
similarity index 100%
rename from board/qemu/x86/linux-4.2.config
rename to board/qemu/x86/linux-4.3.config
diff --git a/configs/qemu_x86_defconfig b/configs/qemu_x86_defconfig
index f2e2022..9fd1fe9 100644
--- a/configs/qemu_x86_defconfig
+++ b/configs/qemu_x86_defconfig
@@ -10,14 +10,14 @@ BR2_TARGET_GENERIC_GETTY_PORT="tty1"
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 4.2 headers to avoid breaking with newer kernels
+# Lock to 4.3 headers to avoid breaking with newer kernels
BR2_KERNEL_HEADERS_VERSION=y
-BR2_DEFAULT_KERNEL_VERSION="4.2.6"
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2=y
+BR2_DEFAULT_KERNEL_VERSION="4.3"
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_3=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.2.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.3"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-4.2.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-4.3.config"
--
2.4.10
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/3] configs/qemu: fix networking for sparc64
2015-11-17 16:37 [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Gustavo Zacarias
@ 2015-11-17 16:37 ` Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 3/3] configs/qemu: enable tmpfs for microblaze Gustavo Zacarias
2015-11-17 20:22 ` [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-11-17 16:37 UTC (permalink / raw)
To: buildroot
It contained a typo that prevented the driver from being built.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/sparc64-sun4u/linux-4.3.config | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/qemu/sparc64-sun4u/linux-4.3.config b/board/qemu/sparc64-sun4u/linux-4.3.config
index 7eda705..0e1e168 100644
--- a/board/qemu/sparc64-sun4u/linux-4.3.config
+++ b/board/qemu/sparc64-sun4u/linux-4.3.config
@@ -15,7 +15,7 @@ CONFIG_BLK_DEV_SD=y
CONFIG_ATA=y
CONFIG_PATA_CMD64X=y
CONFIG_NETDEVICES=y
-CONFIG_E1000_PCI=y
+CONFIG_E1000=y
CONFIG_SERIAL_SUNSU=y
CONFIG_SERIAL_SUNSU_CONSOLE=y
CONFIG_EXT4_FS=y
--
2.4.10
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 3/3] configs/qemu: enable tmpfs for microblaze
2015-11-17 16:37 [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 2/3] configs/qemu: fix networking for sparc64 Gustavo Zacarias
@ 2015-11-17 16:37 ` Gustavo Zacarias
2015-11-17 20:22 ` [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-11-17 16:37 UTC (permalink / raw)
To: buildroot
Otherwise the tmpfs-backed filesystems fail:
mount: mounting tmpfs on /dev/shm failed: Invalid argument
mount: mounting tmpfs on /tmp failed: Invalid argument
mount: mounting tmpfs on /run failed: Invalid argument
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/microblazebe-mmu/linux-4.3.config | 1 +
board/qemu/microblazeel-mmu/linux-4.3.config | 1 +
2 files changed, 2 insertions(+)
diff --git a/board/qemu/microblazebe-mmu/linux-4.3.config b/board/qemu/microblazebe-mmu/linux-4.3.config
index 6b4ff22..7bcd382 100644
--- a/board/qemu/microblazebe-mmu/linux-4.3.config
+++ b/board/qemu/microblazebe-mmu/linux-4.3.config
@@ -17,3 +17,4 @@ CONFIG_XILINX_EMACLITE=y
CONFIG_SERIAL_UARTLITE=y
CONFIG_SERIAL_UARTLITE_CONSOLE=y
# CONFIG_VGA_CONSOLE is not set
+CONFIG_TMPFS=y
diff --git a/board/qemu/microblazeel-mmu/linux-4.3.config b/board/qemu/microblazeel-mmu/linux-4.3.config
index c7d6b30..a622828 100644
--- a/board/qemu/microblazeel-mmu/linux-4.3.config
+++ b/board/qemu/microblazeel-mmu/linux-4.3.config
@@ -16,3 +16,4 @@ CONFIG_XILINX_EMACLITE=y
CONFIG_SERIAL_UARTLITE=y
CONFIG_SERIAL_UARTLITE_CONSOLE=y
# CONFIG_VGA_CONSOLE is not set
+CONFIG_TMPFS=y
--
2.4.10
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel
2015-11-17 16:37 [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 2/3] configs/qemu: fix networking for sparc64 Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 3/3] configs/qemu: enable tmpfs for microblaze Gustavo Zacarias
@ 2015-11-17 20:22 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-11-17 20:22 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On Tue, 17 Nov 2015 13:37:12 -0300, Gustavo Zacarias wrote:
> Now that uclibc-ng was bumped to version 1.0.9 nothing prevents x86
> from working correctly.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> board/qemu/x86/{linux-4.2.config => linux-4.3.config} | 0
> configs/qemu_x86_defconfig | 10 +++++-----
> 2 files changed, 5 insertions(+), 5 deletions(-)
> rename board/qemu/x86/{linux-4.2.config => linux-4.3.config} (100%)
All three patches applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-11-17 20:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-17 16:37 [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 2/3] configs/qemu: fix networking for sparc64 Gustavo Zacarias
2015-11-17 16:37 ` [Buildroot] [PATCH 3/3] configs/qemu: enable tmpfs for microblaze Gustavo Zacarias
2015-11-17 20:22 ` [Buildroot] [PATCH 1/3] configs/qemu: bump x86 to 4.3 kernel Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox