mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Add a defconfig to run Linux on a large range of 32-bit HP PA-RISC 1.1 Workstations, such as the HP 9000 700 and Visualize workstations. While at it, add this defconfig to myself in DEVELOPERS. Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
22 lines
586 B
Bash
22 lines
586 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
# Generate lifimage.
|
|
palo \
|
|
--bootloader="${BINARIES_DIR}/iplboot" \
|
|
--commandline='0/vmlinux initrd=0/ramdisk' \
|
|
--configfile=/dev/null \
|
|
--init-tape="${BINARIES_DIR}/lifimage" \
|
|
--ramdisk="${BINARIES_DIR}/rootfs.cpio.gz" \
|
|
--recoverykernel="${BINARIES_DIR}/vmlinux" \
|
|
--verbose
|
|
|
|
# Install loader to disk image.
|
|
palo \
|
|
--bootloader="${BINARIES_DIR}/iplboot" \
|
|
--commandline="1/vmlinux root=PARTUUID=%PARTUUID%-02 rootwait" \
|
|
--configfile=/dev/null \
|
|
--init-partitioned="${BINARIES_DIR}/disk.img" \
|
|
--recoverykernel="${BINARIES_DIR}/vmlinux" \
|
|
--verbose
|