Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 48b318a

Browse files
martellnathanchance
authored andcommitted
driver: Add support for powerpc64 (big endian)
[nc: Remove -nographic, it's global Change image to vmlinux, none of the wrapped images boot] Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
1 parent 047a943 commit 48b318a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

driver.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,17 @@ setup_variables() {
112112
export ARCH=powerpc
113113
export CROSS_COMPILE=powerpc-linux-gnu- ;;
114114

115+
"ppc64")
116+
config=pseries_defconfig
117+
qemu="qemu-system-ppc64"
118+
image_name=vmlinux
119+
qemu_ram=1G
120+
qemu_cmdline=( -machine pseries
121+
-vga none
122+
-initrd "images/ppc64/rootfs.cpio" )
123+
export ARCH=powerpc
124+
export CROSS_COMPILE=powerpc64-linux-gnu- ;;
125+
115126
"ppc64le")
116127
config=powernv_defconfig
117128
image_name=zImage.epapr

0 commit comments

Comments
 (0)