mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-14 17:50:04 -04:00
33 lines
562 B
Bash
Executable File
33 lines
562 B
Bash
Executable File
#!/bin/sh
|
|
# $NetBSD: mkbootinfo.sh,v 1.2 2008/01/24 01:12:57 garbled Exp $
|
|
|
|
OS=$1
|
|
BPART=$2
|
|
OUT=$3
|
|
BITMAP=$4
|
|
|
|
if [ -z "$OS" ]; then
|
|
OS="NetBSD/ofppc"
|
|
fi
|
|
|
|
if [ -z "$BPART" ]; then
|
|
BPART=3
|
|
fi
|
|
|
|
if [ -z "$OUT" ]; then
|
|
OUT="bootinfo.txt"
|
|
fi
|
|
|
|
if [ -z "$BITMAP" ]; then
|
|
BITMAP="/usr/mdec/netbsd.chrp"
|
|
fi
|
|
|
|
echo "<chrp-boot>" > $OUT
|
|
echo "<description>${OS}</description>" >>$OUT
|
|
echo "<os-name>${OS}</os-name>" >>$OUT
|
|
echo "<boot-script>boot &device;:${BPART}</boot-script>" >>$OUT
|
|
if [ -f "${BITMAP}" ]; then
|
|
/bin/cat ${BITMAP} >>$OUT
|
|
fi
|
|
echo "</chrp-boot>" >>$OUT
|