Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2
@ 2012-01-05 16:30 Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 2/9] linux: update stable kernel to version 3.2 Gustavo Zacarias
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 toolchain/kernel-headers/Config.in                 |   10 +++++++---
 ...all-fix-__packed-in-exported-kernel-head.patch} |    0
 2 files changed, 7 insertions(+), 3 deletions(-)
 rename toolchain/kernel-headers/{linux-3.0.14-headers_install-fix-__packed-in-exported-kernel-head.patch => linux-3.0.15-headers_install-fix-__packed-in-exported-kernel-head.patch} (100%)

diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index e092651..ccd7a30 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -6,7 +6,7 @@ comment "Kernel Header Options"
 
 choice
 	prompt "Kernel Headers"
-	default BR2_KERNEL_HEADERS_3_1
+	default BR2_KERNEL_HEADERS_3_2
 	help
 	  Select the version of kernel header files you wish to use.
 	  You must select the correct set of header files to match
@@ -36,6 +36,9 @@ choice
 	config BR2_KERNEL_HEADERS_3_1
 		bool "Linux 3.1.x kernel headers"
 
+	config BR2_KERNEL_HEADERS_3_2
+		bool "Linux 3.2.x kernel headers"
+
 	config BR2_KERNEL_HEADERS_VERSION
 		bool "Linux 2.6 (manually specified version)"
 
@@ -57,7 +60,8 @@ config BR2_DEFAULT_KERNEL_HEADERS
 	default "2.6.37.6"	if BR2_KERNEL_HEADERS_2_6_37
 	default "2.6.38.8"	if BR2_KERNEL_HEADERS_2_6_38
 	default "2.6.39.4"	if BR2_KERNEL_HEADERS_2_6_39
-	default "3.0.14"	if BR2_KERNEL_HEADERS_3_0
-	default "3.1.6"		if BR2_KERNEL_HEADERS_3_1
+	default "3.0.15"	if BR2_KERNEL_HEADERS_3_0
+	default "3.1.7"		if BR2_KERNEL_HEADERS_3_1
+	default "3.2"		if BR2_KERNEL_HEADERS_3_2
 	default "2.6"		if BR2_KERNEL_HEADERS_SNAP
 	default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
diff --git a/toolchain/kernel-headers/linux-3.0.14-headers_install-fix-__packed-in-exported-kernel-head.patch b/toolchain/kernel-headers/linux-3.0.15-headers_install-fix-__packed-in-exported-kernel-head.patch
similarity index 100%
rename from toolchain/kernel-headers/linux-3.0.14-headers_install-fix-__packed-in-exported-kernel-head.patch
rename to toolchain/kernel-headers/linux-3.0.15-headers_install-fix-__packed-in-exported-kernel-head.patch
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 2/9] linux: update stable kernel to version 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 3/9] qemu/arm-versatile: update to use kernel " Gustavo Zacarias
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 linux/Config.in |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/linux/Config.in b/linux/Config.in
index 892a503..db364fe 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -19,10 +19,10 @@ if BR2_LINUX_KERNEL
 #
 choice
 	prompt "Kernel version"
-	default BR2_LINUX_KERNEL_3_1
+	default BR2_LINUX_KERNEL_3_2
 
-config BR2_LINUX_KERNEL_3_1
-	bool "3.1.6"
+config BR2_LINUX_KERNEL_3_2
+	bool "3.2"
 
 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	bool "Same as toolchain kernel headers"
@@ -58,7 +58,7 @@ endchoice
 config BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE
 	string "Kernel version"
 	depends on BR2_LINUX_KERNEL_CUSTOM_VERSION
-	default "3.1.6"
+	default "3.2"
 
 config BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION
 	string "URL of custom kernel tarball"
@@ -74,7 +74,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "3.1.6" if BR2_LINUX_KERNEL_3_1
+	default "3.2" if BR2_LINUX_KERNEL_3_2
 	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.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 3/9] qemu/arm-versatile: update to use kernel version 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 2/9] linux: update stable kernel to version 3.2 Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 4/9] qemu/mipsel-malta: update readme and " Gustavo Zacarias
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../{linux-3.1.config => linux-3.2.config}         |    0
 configs/qemu_arm_versatile_defconfig               |    4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename board/qemu/arm-versatile/{linux-3.1.config => linux-3.2.config} (100%)

diff --git a/board/qemu/arm-versatile/linux-3.1.config b/board/qemu/arm-versatile/linux-3.2.config
similarity index 100%
rename from board/qemu/arm-versatile/linux-3.1.config
rename to board/qemu/arm-versatile/linux-3.2.config
diff --git a/configs/qemu_arm_versatile_defconfig b/configs/qemu_arm_versatile_defconfig
index b629ba9..17aa833 100644
--- a/configs/qemu_arm_versatile_defconfig
+++ b/configs/qemu_arm_versatile_defconfig
@@ -13,7 +13,7 @@ BR2_TARGET_ROOTFS_EXT2=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/arm-versatile/linux-3.1.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/arm-versatile/linux-3.2.config"
 BR2_LINUX_KERNEL_ZIMAGE=y
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 4/9] qemu/mipsel-malta: update readme and use kernel version 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 2/9] linux: update stable kernel to version 3.2 Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 3/9] qemu/arm-versatile: update to use kernel " Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 5/9] qemu/sh4-r2d: update to use kernel 3.2 Gustavo Zacarias
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Update configuration to use kernel version 3.2
Also update the readme to use buildroot basedir as a reference for
kernel and rootfs like the other samples do.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../{linux-3.1.config => linux-3.2.config}         |    0
 board/qemu/mipsel-malta/readme.txt                 |    2 +-
 configs/qemu_mipsel_malta_defconfig                |    4 ++--
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename board/qemu/mipsel-malta/{linux-3.1.config => linux-3.2.config} (100%)

diff --git a/board/qemu/mipsel-malta/linux-3.1.config b/board/qemu/mipsel-malta/linux-3.2.config
similarity index 100%
rename from board/qemu/mipsel-malta/linux-3.1.config
rename to board/qemu/mipsel-malta/linux-3.2.config
diff --git a/board/qemu/mipsel-malta/readme.txt b/board/qemu/mipsel-malta/readme.txt
index b494976..94e959d 100644
--- a/board/qemu/mipsel-malta/readme.txt
+++ b/board/qemu/mipsel-malta/readme.txt
@@ -1,6 +1,6 @@
 Run the emulation with:
 
- qemu-system-mipsel -M malta -kernel vmlinux -serial stdio -hda rootfs.ext2 -append "root=/dev/hda"
+ qemu-system-mipsel -M malta -kernel output/images/vmlinux -serial stdio -hda output/images/rootfs.ext2 -append "root=/dev/hda"
 
 The login prompt will appear in the terminal that started Qemu. The
 graphical window is the framebuffer. No keyboard support has been
diff --git a/configs/qemu_mipsel_malta_defconfig b/configs/qemu_mipsel_malta_defconfig
index 3f558fe..a46f886 100644
--- a/configs/qemu_mipsel_malta_defconfig
+++ b/configs/qemu_mipsel_malta_defconfig
@@ -9,9 +9,9 @@ BR2_TARGET_ROOTFS_EXT2=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.1.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.2.config"
 BR2_LINUX_KERNEL_VMLINUX=y
 
 # Serial port config
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 5/9] qemu/sh4-r2d: update to use kernel 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2012-01-05 16:30 ` [Buildroot] [PATCH 4/9] qemu/mipsel-malta: update readme and " Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 6/9] qemu/x86: update to use kernel version 3.2 Gustavo Zacarias
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../sh4-r2d/{linux-3.1.config => linux-3.2.config} |    0
 configs/qemu_sh4_r2d_defconfig                     |    4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename board/qemu/sh4-r2d/{linux-3.1.config => linux-3.2.config} (100%)

diff --git a/board/qemu/sh4-r2d/linux-3.1.config b/board/qemu/sh4-r2d/linux-3.2.config
similarity index 100%
rename from board/qemu/sh4-r2d/linux-3.1.config
rename to board/qemu/sh4-r2d/linux-3.2.config
diff --git a/configs/qemu_sh4_r2d_defconfig b/configs/qemu_sh4_r2d_defconfig
index 8f92a93..a35e2fa 100644
--- a/configs/qemu_sh4_r2d_defconfig
+++ b/configs/qemu_sh4_r2d_defconfig
@@ -18,7 +18,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.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/sh4-r2d/linux-3.1.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/sh4-r2d/linux-3.2.config"
 BR2_LINUX_KERNEL_ZIMAGE=y
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 6/9] qemu/x86: update to use kernel version 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2012-01-05 16:30 ` [Buildroot] [PATCH 5/9] qemu/sh4-r2d: update to use kernel 3.2 Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 7/9] qemu/x86-64: " Gustavo Zacarias
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../x86/{linux-3.1.config => linux-3.2.config}     |    0
 configs/qemu_x86_defconfig                         |    4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename board/qemu/x86/{linux-3.1.config => linux-3.2.config} (100%)

diff --git a/board/qemu/x86/linux-3.1.config b/board/qemu/x86/linux-3.2.config
similarity index 100%
rename from board/qemu/x86/linux-3.1.config
rename to board/qemu/x86/linux-3.2.config
diff --git a/configs/qemu_x86_defconfig b/configs/qemu_x86_defconfig
index 8efe9ae..314b124 100644
--- a/configs/qemu_x86_defconfig
+++ b/configs/qemu_x86_defconfig
@@ -13,6 +13,6 @@ BR2_TARGET_ROOTFS_EXT2=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.1.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.2.config"
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 7/9] qemu/x86-64: update to use kernel version 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
                   ` (4 preceding siblings ...)
  2012-01-05 16:30 ` [Buildroot] [PATCH 6/9] qemu/x86: update to use kernel version 3.2 Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 8/9] qemu/mips-malta: add new sample config Gustavo Zacarias
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../x86_64/{linux-3.1.config => linux-3.2.config}  |    0
 configs/qemu_x86_64_defconfig                      |    4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename board/qemu/x86_64/{linux-3.1.config => linux-3.2.config} (100%)

diff --git a/board/qemu/x86_64/linux-3.1.config b/board/qemu/x86_64/linux-3.2.config
similarity index 100%
rename from board/qemu/x86_64/linux-3.1.config
rename to board/qemu/x86_64/linux-3.2.config
diff --git a/configs/qemu_x86_64_defconfig b/configs/qemu_x86_64_defconfig
index e6a59ac..cf3c0e1 100644
--- a/configs/qemu_x86_64_defconfig
+++ b/configs/qemu_x86_64_defconfig
@@ -12,6 +12,6 @@ BR2_TARGET_ROOTFS_EXT2=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.1.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.2.config"
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 8/9] qemu/mips-malta: add new sample config
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
                   ` (5 preceding siblings ...)
  2012-01-05 16:30 ` [Buildroot] [PATCH 7/9] qemu/x86-64: " Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-05 16:30 ` [Buildroot] [PATCH 9/9] qemu/sparc-ss10: update to use kernel version 3.2 Gustavo Zacarias
  2012-01-06  9:33 ` [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Peter Korsgaard
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Add a new qemu_mips_malta sample configuration for big endian MIPS
testing.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 board/qemu/mips-malta/linux-3.2.config |   76 ++++++++++++++++++++++++++++++++
 board/qemu/mips-malta/readme.txt       |    7 +++
 configs/qemu_mips_malta_defconfig      |   19 ++++++++
 3 files changed, 102 insertions(+), 0 deletions(-)
 create mode 100644 board/qemu/mips-malta/linux-3.2.config
 create mode 100644 board/qemu/mips-malta/readme.txt
 create mode 100644 configs/qemu_mips_malta_defconfig

diff --git a/board/qemu/mips-malta/linux-3.2.config b/board/qemu/mips-malta/linux-3.2.config
new file mode 100644
index 0000000..7549ccc
--- /dev/null
+++ b/board/qemu/mips-malta/linux-3.2.config
@@ -0,0 +1,76 @@
+CONFIG_MIPS_MALTA=y
+CONFIG_CPU_MIPS32_R2=y
+CONFIG_MIPS_MT_SMP=y
+CONFIG_NO_HZ=y
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HZ_100=y
+CONFIG_EXPERIMENTAL=y
+CONFIG_SYSVIPC=y
+CONFIG_LOG_BUF_SHIFT=15
+CONFIG_SYSFS_DEPRECATED_V2=y
+CONFIG_RELAY=y
+CONFIG_NAMESPACES=y
+CONFIG_UTS_NS=y
+CONFIG_IPC_NS=y
+CONFIG_PID_NS=y
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+CONFIG_EMBEDDED=y
+# CONFIG_SYSCTL_SYSCALL is not set
+# CONFIG_COMPAT_BRK is not set
+CONFIG_SLAB=y
+CONFIG_MODULES=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+# CONFIG_BLK_DEV_BSG is not set
+CONFIG_PCI=y
+CONFIG_PM=y
+CONFIG_NET=y
+CONFIG_PACKET=y
+CONFIG_UNIX=y
+CONFIG_INET=y
+CONFIG_IP_PNP=y
+# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
+# CONFIG_INET_XFRM_MODE_TUNNEL is not set
+# CONFIG_INET_XFRM_MODE_BEET is not set
+# CONFIG_INET_LRO is not set
+# CONFIG_INET_DIAG is not set
+# CONFIG_IPV6 is not set
+# CONFIG_WIRELESS is not set
+CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+# CONFIG_MISC_DEVICES is not set
+CONFIG_IDE=y
+CONFIG_BLK_DEV_IDECD=y
+CONFIG_IDE_GENERIC=y
+CONFIG_BLK_DEV_GENERIC=y
+CONFIG_BLK_DEV_PIIX=y
+CONFIG_NETDEVICES=y
+CONFIG_NET_ETHERNET=y
+CONFIG_NET_PCI=y
+CONFIG_PCNET32=y
+# CONFIG_NETDEV_1000 is not set
+# CONFIG_NETDEV_10000 is not set
+# CONFIG_WLAN is not set
+# CONFIG_INPUT_KEYBOARD is not set
+# CONFIG_INPUT_MOUSE is not set
+# CONFIG_SERIO_I8042 is not set
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+# CONFIG_HW_RANDOM is not set
+# CONFIG_HWMON is not set
+# CONFIG_MFD_SUPPORT is not set
+CONFIG_FB=y
+CONFIG_FB_CIRRUS=y
+# CONFIG_VGA_CONSOLE is not set
+# CONFIG_HID_SUPPORT is not set
+# CONFIG_USB_SUPPORT is not set
+CONFIG_EXT2_FS=y
+CONFIG_EXT3_FS=y
+CONFIG_QUOTA=y
+CONFIG_PROC_KCORE=y
+CONFIG_TMPFS=y
+CONFIG_NFS_FS=y
+CONFIG_NFS_V3=y
+CONFIG_ROOT_NFS=y
+# CONFIG_RCU_CPU_STALL_DETECTOR is not set
diff --git a/board/qemu/mips-malta/readme.txt b/board/qemu/mips-malta/readme.txt
new file mode 100644
index 0000000..0e21a3c
--- /dev/null
+++ b/board/qemu/mips-malta/readme.txt
@@ -0,0 +1,7 @@
+Run the emulation with:
+
+ qemu-system-mips -M malta -kernel output/images/vmlinux -serial stdio -hda output/images/rootfs.ext2 -append "root=/dev/hda"
+
+The login prompt will appear in the terminal that started Qemu. The
+graphical window is the framebuffer. No keyboard support has been
+enabled.
diff --git a/configs/qemu_mips_malta_defconfig b/configs/qemu_mips_malta_defconfig
new file mode 100644
index 0000000..d6ab841
--- /dev/null
+++ b/configs/qemu_mips_malta_defconfig
@@ -0,0 +1,19 @@
+# Architecture
+BR2_mips=y
+BR2_mips_32r2=y
+
+# filesystem
+BR2_TARGET_ROOTFS_EXT2=y
+# BR2_TARGET_ROOTFS_TAR is not set
+
+# Kernel
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_VERSION=y
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
+BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips-malta/linux-3.2.config"
+BR2_LINUX_KERNEL_VMLINUX=y
+
+# Serial port config
+BR2_TARGET_GENERIC_GETTY=y
+BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 9/9] qemu/sparc-ss10: update to use kernel version 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
                   ` (6 preceding siblings ...)
  2012-01-05 16:30 ` [Buildroot] [PATCH 8/9] qemu/mips-malta: add new sample config Gustavo Zacarias
@ 2012-01-05 16:30 ` Gustavo Zacarias
  2012-01-06  9:33 ` [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Peter Korsgaard
  8 siblings, 0 replies; 10+ messages in thread
From: Gustavo Zacarias @ 2012-01-05 16:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 configs/qemu_sparc_ss10_defconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configs/qemu_sparc_ss10_defconfig b/configs/qemu_sparc_ss10_defconfig
index 20cd9fb..834514f 100644
--- a/configs/qemu_sparc_ss10_defconfig
+++ b/configs/qemu_sparc_ss10_defconfig
@@ -9,6 +9,6 @@ BR2_TARGET_ROOTFS_EXT2=y
 # Linux kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2"
 BR2_LINUX_KERNEL_DEFCONFIG="sparc32"
 BR2_LINUX_KERNEL_ZIMAGE=y
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2
  2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
                   ` (7 preceding siblings ...)
  2012-01-05 16:30 ` [Buildroot] [PATCH 9/9] qemu/sparc-ss10: update to use kernel version 3.2 Gustavo Zacarias
@ 2012-01-06  9:33 ` Peter Korsgaard
  8 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2012-01-06  9:33 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed entire series, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2012-01-06  9:33 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-05 16:30 [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 2/9] linux: update stable kernel to version 3.2 Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 3/9] qemu/arm-versatile: update to use kernel " Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 4/9] qemu/mipsel-malta: update readme and " Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 5/9] qemu/sh4-r2d: update to use kernel 3.2 Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 6/9] qemu/x86: update to use kernel version 3.2 Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 7/9] qemu/x86-64: " Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 8/9] qemu/mips-malta: add new sample config Gustavo Zacarias
2012-01-05 16:30 ` [Buildroot] [PATCH 9/9] qemu/sparc-ss10: update to use kernel version 3.2 Gustavo Zacarias
2012-01-06  9:33 ` [Buildroot] [PATCH 1/9] kernel-headers: bump 3.0 & 3.1 stable versions, add 3.2 Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox