* [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version
@ 2012-07-31 21:13 Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 02/11] linux: bump default to kerel version 3.4.7 Gustavo Zacarias
` (10 more replies)
0 siblings, 11 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
| 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
--git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 514d299..96dd129 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -68,6 +68,6 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "3.1.10" if BR2_KERNEL_HEADERS_3_1
default "3.2.24" if BR2_KERNEL_HEADERS_3_2
default "3.3.8" if BR2_KERNEL_HEADERS_3_3
- default "3.4.6" if BR2_KERNEL_HEADERS_3_4
+ default "3.4.7" if BR2_KERNEL_HEADERS_3_4
default "2.6" if BR2_KERNEL_HEADERS_SNAP
default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 02/11] linux: bump default to kerel version 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 03/11] qemu/ppc-mpc8544ds: update to use kernel 3.4.7 Gustavo Zacarias
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
linux/Config.in | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/linux/Config.in b/linux/Config.in
index e0c1c7e..0981310 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -22,7 +22,7 @@ choice
default BR2_LINUX_KERNEL_3_4
config BR2_LINUX_KERNEL_3_4
- bool "3.4.6"
+ bool "3.4.7"
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
bool "Same as toolchain kernel headers"
@@ -77,7 +77,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
config BR2_LINUX_KERNEL_VERSION
string
- default "3.4.6" if BR2_LINUX_KERNEL_3_4
+ default "3.4.7" if BR2_LINUX_KERNEL_3_4
default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION
default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 03/11] qemu/ppc-mpc8544ds: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 02/11] linux: bump default to kerel version 3.4.7 Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 04/11] qemu/sparc-ss10: " Gustavo Zacarias
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/powerpc-mpc8544ds/readme.txt | 1 +
configs/qemu_ppc_mpc8544ds_defconfig | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/board/qemu/powerpc-mpc8544ds/readme.txt b/board/qemu/powerpc-mpc8544ds/readme.txt
index 6ecdc4b..646f459 100644
--- a/board/qemu/powerpc-mpc8544ds/readme.txt
+++ b/board/qemu/powerpc-mpc8544ds/readme.txt
@@ -4,3 +4,4 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu.
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_ppc_mpc8544ds_defconfig b/configs/qemu_ppc_mpc8544ds_defconfig
index 44c81de..8855961 100644
--- a/configs/qemu_ppc_mpc8544ds_defconfig
+++ b/configs/qemu_ppc_mpc8544ds_defconfig
@@ -6,13 +6,13 @@ BR2_powerpc_8548=y
# BR2_TARGET_ROOTFS_TAR is not set
BR2_TARGET_ROOTFS_INITRAMFS=y
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_DEFCONFIG="mpc85xx"
BR2_LINUX_KERNEL_VMLINUX=y
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 04/11] qemu/sparc-ss10: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 02/11] linux: bump default to kerel version 3.4.7 Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 03/11] qemu/ppc-mpc8544ds: update to use kernel 3.4.7 Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 05/11] qemu/sh4-r2d: update to use kernel 3.2.24 Gustavo Zacarias
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/sparc-ss10/readme.txt | 1 +
configs/qemu_sparc_ss10_defconfig | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/board/qemu/sparc-ss10/readme.txt b/board/qemu/sparc-ss10/readme.txt
index 5f01efa..4c20702 100644
--- a/board/qemu/sparc-ss10/readme.txt
+++ b/board/qemu/sparc-ss10/readme.txt
@@ -5,3 +5,4 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu.
The graphical window is the framebuffer.
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_sparc_ss10_defconfig b/configs/qemu_sparc_ss10_defconfig
index 7ac66af..9c55458 100644
--- a/configs/qemu_sparc_ss10_defconfig
+++ b/configs/qemu_sparc_ss10_defconfig
@@ -6,12 +6,12 @@ BR2_sparc_supersparc=y
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Linux kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_DEFCONFIG="sparc32"
BR2_LINUX_KERNEL_ZIMAGE=y
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 05/11] qemu/sh4-r2d: update to use kernel 3.2.24
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (2 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 04/11] qemu/sparc-ss10: " Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 06/11] qemu/arm-vexpress: update to use kernel 3.4.7 Gustavo Zacarias
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/sh4-r2d/readme.txt | 1 +
configs/qemu_sh4_r2d_defconfig | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/board/qemu/sh4-r2d/readme.txt b/board/qemu/sh4-r2d/readme.txt
index 875e3d0..c9b4a10 100644
--- a/board/qemu/sh4-r2d/readme.txt
+++ b/board/qemu/sh4-r2d/readme.txt
@@ -5,3 +5,4 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu.
The graphical window is the framebuffer.
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_sh4_r2d_defconfig b/configs/qemu_sh4_r2d_defconfig
index a580870..0edd583 100644
--- a/configs/qemu_sh4_r2d_defconfig
+++ b/configs/qemu_sh4_r2d_defconfig
@@ -20,7 +20,7 @@ BR2_EXTRA_GCC_CONFIG_OPTIONS="--with-multilib-list=m4,m4-nofpu"
# Linux kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2.18"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2.24"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/sh4-r2d/linux-3.2.config"
BR2_LINUX_KERNEL_ZIMAGE=y
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 06/11] qemu/arm-vexpress: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (3 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 05/11] qemu/sh4-r2d: update to use kernel 3.2.24 Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 07/11] qemu/mipsel-malta: " Gustavo Zacarias
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
board/qemu/arm-vexpress/readme.txt | 2 ++
configs/qemu_arm_vexpress_defconfig | 6 +++---
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/board/qemu/arm-vexpress/readme.txt b/board/qemu/arm-vexpress/readme.txt
index 0d3631c..aeea842 100644
--- a/board/qemu/arm-vexpress/readme.txt
+++ b/board/qemu/arm-vexpress/readme.txt
@@ -4,3 +4,5 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu. The
graphical window is the framebuffer.
+
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_arm_vexpress_defconfig b/configs/qemu_arm_vexpress_defconfig
index 9596fe5..03ea6e0 100644
--- a/configs/qemu_arm_vexpress_defconfig
+++ b/configs/qemu_arm_vexpress_defconfig
@@ -11,12 +11,12 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_DEFCONFIG="vexpress"
BR2_LINUX_KERNEL_ZIMAGE=y
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 07/11] qemu/mipsel-malta: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (4 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 06/11] qemu/arm-vexpress: update to use kernel 3.4.7 Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 08/11] qemu/mips-malta: " Gustavo Zacarias
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
.../{linux-3.3.config => linux-3.4.config} | 0
board/qemu/mipsel-malta/readme.txt | 2 ++
configs/qemu_mipsel_malta_defconfig | 8 ++++----
3 files changed, 6 insertions(+), 4 deletions(-)
rename board/qemu/mipsel-malta/{linux-3.3.config => linux-3.4.config} (100%)
diff --git a/board/qemu/mipsel-malta/linux-3.3.config b/board/qemu/mipsel-malta/linux-3.4.config
similarity index 100%
rename from board/qemu/mipsel-malta/linux-3.3.config
rename to board/qemu/mipsel-malta/linux-3.4.config
diff --git a/board/qemu/mipsel-malta/readme.txt b/board/qemu/mipsel-malta/readme.txt
index 94e959d..09ad500 100644
--- a/board/qemu/mipsel-malta/readme.txt
+++ b/board/qemu/mipsel-malta/readme.txt
@@ -5,3 +5,5 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu. The
graphical window is the framebuffer. No keyboard support has been
enabled.
+
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_mipsel_malta_defconfig b/configs/qemu_mipsel_malta_defconfig
index 4a4879c..055c1b1 100644
--- a/configs/qemu_mipsel_malta_defconfig
+++ b/configs/qemu_mipsel_malta_defconfig
@@ -6,15 +6,15 @@ BR2_mips_32r2=y
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.3.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.4.config"
BR2_LINUX_KERNEL_VMLINUX=y
# Serial port config
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 08/11] qemu/mips-malta: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (5 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 07/11] qemu/mipsel-malta: " Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 09/11] qemu/microblaze: " Gustavo Zacarias
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
.../{linux-3.3.config => linux-3.4.config} | 0
board/qemu/mips-malta/readme.txt | 2 ++
configs/qemu_mips_malta_defconfig | 8 ++++----
3 files changed, 6 insertions(+), 4 deletions(-)
rename board/qemu/mips-malta/{linux-3.3.config => linux-3.4.config} (100%)
diff --git a/board/qemu/mips-malta/linux-3.3.config b/board/qemu/mips-malta/linux-3.4.config
similarity index 100%
rename from board/qemu/mips-malta/linux-3.3.config
rename to board/qemu/mips-malta/linux-3.4.config
diff --git a/board/qemu/mips-malta/readme.txt b/board/qemu/mips-malta/readme.txt
index 0e21a3c..0288df5 100644
--- a/board/qemu/mips-malta/readme.txt
+++ b/board/qemu/mips-malta/readme.txt
@@ -5,3 +5,5 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu. The
graphical window is the framebuffer. No keyboard support has been
enabled.
+
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_mips_malta_defconfig b/configs/qemu_mips_malta_defconfig
index 57f3ae1..f9ec326 100644
--- a/configs/qemu_mips_malta_defconfig
+++ b/configs/qemu_mips_malta_defconfig
@@ -6,15 +6,15 @@ BR2_mips_32r2=y
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips-malta/linux-3.3.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips-malta/linux-3.4.config"
BR2_LINUX_KERNEL_VMLINUX=y
# Serial port config
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 09/11] qemu/microblaze: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (6 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 08/11] qemu/mips-malta: " Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 10/11] qemu/x86_64: " Gustavo Zacarias
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
.../{kernel-3.3.config => kernel-3.4.config} | 0
board/qemu/microblazebe-mmu/readme.txt | 1 +
.../{kernel-3.3.config => kernel-3.4.config} | 0
board/qemu/microblazeel-mmu/readme.txt | 1 +
configs/qemu_microblazebe_mmu_defconfig | 4 ++--
configs/qemu_microblazeel_mmu_defconfig | 4 ++--
6 files changed, 6 insertions(+), 4 deletions(-)
rename board/qemu/microblazebe-mmu/{kernel-3.3.config => kernel-3.4.config} (100%)
rename board/qemu/microblazeel-mmu/{kernel-3.3.config => kernel-3.4.config} (100%)
diff --git a/board/qemu/microblazebe-mmu/kernel-3.3.config b/board/qemu/microblazebe-mmu/kernel-3.4.config
similarity index 100%
rename from board/qemu/microblazebe-mmu/kernel-3.3.config
rename to board/qemu/microblazebe-mmu/kernel-3.4.config
diff --git a/board/qemu/microblazebe-mmu/readme.txt b/board/qemu/microblazebe-mmu/readme.txt
index c59c0bd..5281a0f 100644
--- a/board/qemu/microblazebe-mmu/readme.txt
+++ b/board/qemu/microblazebe-mmu/readme.txt
@@ -4,3 +4,4 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu.
+Tested with QEMU 1.1.1
diff --git a/board/qemu/microblazeel-mmu/kernel-3.3.config b/board/qemu/microblazeel-mmu/kernel-3.4.config
similarity index 100%
rename from board/qemu/microblazeel-mmu/kernel-3.3.config
rename to board/qemu/microblazeel-mmu/kernel-3.4.config
diff --git a/board/qemu/microblazeel-mmu/readme.txt b/board/qemu/microblazeel-mmu/readme.txt
index 43a40e8..003d2a8 100644
--- a/board/qemu/microblazeel-mmu/readme.txt
+++ b/board/qemu/microblazeel-mmu/readme.txt
@@ -4,3 +4,4 @@ Run the emulation with:
The login prompt will appear in the terminal that started Qemu.
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_microblazebe_mmu_defconfig b/configs/qemu_microblazebe_mmu_defconfig
index 387466b..0f66adf 100644
--- a/configs/qemu_microblazebe_mmu_defconfig
+++ b/configs/qemu_microblazebe_mmu_defconfig
@@ -19,9 +19,9 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazebe-mmu/kernel-3.3.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazebe-mmu/kernel-3.4.config"
BR2_LINUX_KERNEL_DTS_FILE="board/qemu/microblazebe-mmu/system.dts"
BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM=y
BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="linux.bin"
diff --git a/configs/qemu_microblazeel_mmu_defconfig b/configs/qemu_microblazeel_mmu_defconfig
index 7034447..766fbf2 100644
--- a/configs/qemu_microblazeel_mmu_defconfig
+++ b/configs/qemu_microblazeel_mmu_defconfig
@@ -19,9 +19,9 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazeel-mmu/kernel-3.3.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazeel-mmu/kernel-3.4.config"
BR2_LINUX_KERNEL_DTS_FILE="board/qemu/microblazeel-mmu/system.dts"
BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM=y
BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="linux.bin"
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 10/11] qemu/x86_64: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (7 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 09/11] qemu/microblaze: " Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 11/11] qemu/x86: " Gustavo Zacarias
2012-07-31 21:43 ` [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Thomas Petazzoni
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
.../x86_64/{linux-3.3.config => linux-3.4.config} | 0
board/qemu/x86_64/readme.txt | 2 ++
configs/qemu_x86_64_defconfig | 8 ++++----
3 files changed, 6 insertions(+), 4 deletions(-)
rename board/qemu/x86_64/{linux-3.3.config => linux-3.4.config} (100%)
diff --git a/board/qemu/x86_64/linux-3.3.config b/board/qemu/x86_64/linux-3.4.config
similarity index 100%
rename from board/qemu/x86_64/linux-3.3.config
rename to board/qemu/x86_64/linux-3.4.config
diff --git a/board/qemu/x86_64/readme.txt b/board/qemu/x86_64/readme.txt
index c06d24f..de50f3c 100644
--- a/board/qemu/x86_64/readme.txt
+++ b/board/qemu/x86_64/readme.txt
@@ -3,3 +3,5 @@ Run the emulation with:
qemu-system-x86_64 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=ide -append root=/dev/sda
The login prompt will appear in the graphical window.
+
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_x86_64_defconfig b/configs/qemu_x86_64_defconfig
index 7c6f311..91f5fc9 100644
--- a/configs/qemu_x86_64_defconfig
+++ b/configs/qemu_x86_64_defconfig
@@ -9,12 +9,12 @@ BR2_TARGET_GENERIC_GETTY_PORT="tty1"
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.3.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.4.config"
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 11/11] qemu/x86: update to use kernel 3.4.7
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (8 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 10/11] qemu/x86_64: " Gustavo Zacarias
@ 2012-07-31 21:13 ` Gustavo Zacarias
2012-07-31 21:43 ` [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Thomas Petazzoni
10 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2012-07-31 21:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
.../x86/{linux-3.3.config => linux-3.4.config} | 0
board/qemu/x86/readme.txt | 2 ++
configs/qemu_x86_defconfig | 8 ++++----
3 files changed, 6 insertions(+), 4 deletions(-)
rename board/qemu/x86/{linux-3.3.config => linux-3.4.config} (100%)
diff --git a/board/qemu/x86/linux-3.3.config b/board/qemu/x86/linux-3.4.config
similarity index 100%
rename from board/qemu/x86/linux-3.3.config
rename to board/qemu/x86/linux-3.4.config
diff --git a/board/qemu/x86/readme.txt b/board/qemu/x86/readme.txt
index 4ba6607..f6f5437 100644
--- a/board/qemu/x86/readme.txt
+++ b/board/qemu/x86/readme.txt
@@ -3,3 +3,5 @@ Run the emulation with:
qemu-system-i386 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=ide -append root=/dev/sda
The login prompt will appear in the graphical window.
+
+Tested with QEMU 1.1.1
diff --git a/configs/qemu_x86_defconfig b/configs/qemu_x86_defconfig
index 118cd7f..1851cec 100644
--- a/configs/qemu_x86_defconfig
+++ b/configs/qemu_x86_defconfig
@@ -10,12 +10,12 @@ BR2_TARGET_GENERIC_GETTY_PORT="tty1"
BR2_TARGET_ROOTFS_EXT2=y
# BR2_TARGET_ROOTFS_TAR is not set
-# Lock to 3.3 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_3=y
+# Lock to 3.4 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_4=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.4.7"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.3.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.4.config"
--
1.7.8.6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
` (9 preceding siblings ...)
2012-07-31 21:13 ` [Buildroot] [PATCH 11/11] qemu/x86: " Gustavo Zacarias
@ 2012-07-31 21:43 ` Thomas Petazzoni
10 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2012-07-31 21:43 UTC (permalink / raw)
To: buildroot
Le Tue, 31 Jul 2012 18:13:05 -0300,
Gustavo Zacarias <gustavo@zacarias.com.ar> a ?crit :
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Applied all 11 patches, after fixing minor conflicts on the Microblaze
configs due to the device tree changes.
It would be great it you could check that the device tree changes have
broken anything. I know the configs build, but I haven't tested them.
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2012-07-31 21:43 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-31 21:13 [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 02/11] linux: bump default to kerel version 3.4.7 Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 03/11] qemu/ppc-mpc8544ds: update to use kernel 3.4.7 Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 04/11] qemu/sparc-ss10: " Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 05/11] qemu/sh4-r2d: update to use kernel 3.2.24 Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 06/11] qemu/arm-vexpress: update to use kernel 3.4.7 Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 07/11] qemu/mipsel-malta: " Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 08/11] qemu/mips-malta: " Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 09/11] qemu/microblaze: " Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 10/11] qemu/x86_64: " Gustavo Zacarias
2012-07-31 21:13 ` [Buildroot] [PATCH 11/11] qemu/x86: " Gustavo Zacarias
2012-07-31 21:43 ` [Buildroot] [PATCH 01/11] kernel-headers: bump 3.4.x stable version Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox