@ -0,0 +1,19 @@ |
|||
____ ___ ___ _ __ _ |
|||
| _ \ / _ \ / __| |/ / | | _ _ __ _ _ _ _ |
|||
| . _/| | | | | | '_/ | | |_| '_ \| | | | \/ | |
|||
| |\ \| |_| | |__| . \ | |__| | | | | `_' |> < |
|||
|_| \_\ ___/ \___|_|\_\ |____|_|_| |_|\___/|_/\_| |
|||
[============> http://www.rocklinux.org/ <============] |
|||
|
|||
ROCK Linux 2.x on SPARC and Ultra SPARC was brought to you by Rene Rebe - |
|||
ROCK Linux Consulting (Germany). Based on former work by Armijn Hemel, |
|||
Jan Veninga and Stefan Koerner! |
|||
|
|||
http://www.rocklinux-consulting.de |
|||
|
|||
So you are going to install ROCK Linux ... |
|||
|
|||
Possible choices are: |
|||
install ........... normal CD boot |
|||
|
|||
. |
|||
@ -0,0 +1,33 @@ |
|||
|
|||
use_silo=1 |
|||
|
|||
cd $disksdir |
|||
|
|||
echo_header "Creating cleaning boot directory:" |
|||
rm -rfv boot/*-rock boot/System.map boot/kconfig* |
|||
|
|||
if [ $use_silo -eq 1 ] |
|||
then |
|||
echo_header "Creating silo setup:" |
|||
# |
|||
echo_status "Extracting silo boot loader images." |
|||
mkdir -p boot |
|||
tar --use-compress-program=bzip2 \ |
|||
-xf $base/build/${ROCKCFG_ID}/pkgs/silo.tar.bz2 \ |
|||
boot/second.b -O > boot/second.b |
|||
# |
|||
echo_status "Creating silo config file." |
|||
cp -v $base/target/$target/sparc/{silo.conf,boot.msg} \ |
|||
boot |
|||
# |
|||
# echo_status "Moving image (initrd) to yaboot directory." |
|||
# mv -v initrd.img boot/ |
|||
# |
|||
buildroot="build/${ROCKCFG_ID}/root" |
|||
cat > ../isofs_arch.txt <<- EOT |
|||
BOOT -G $buildroot/boot/isofs.b -B ... |
|||
DISK1 $datdir/boot/ boot/ |
|||
SCRIPT sh $base/target/bootdisk/powerpc/bless-rs6k.sh $disksdir |
|||
EOT |
|||
fi |
|||
|
|||
@ -1,57 +1,25 @@ |
|||
|
|||
partition=1 |
|||
default=linux |
|||
default=install |
|||
read-write |
|||
timeout=100 |
|||
message=/etc/boot.msg |
|||
image="cat /etc/boot.msg" |
|||
label=1 |
|||
single-key |
|||
image="cat /etc/general.msg" |
|||
label=2 |
|||
single-key |
|||
image="cat /etc/expert.msg" |
|||
label=3 |
|||
single-key |
|||
image="cat /etc/rescue.msg" |
|||
label=4 |
|||
single-key |
|||
image="cat /etc/kickit.msg" |
|||
label=5 |
|||
single-key |
|||
image="cat /etc/param.msg" |
|||
label=6 |
|||
single-key |
|||
image[sun4u]=/boot/vmlinux64.gz |
|||
label=linux |
|||
alias=install |
|||
initrd=/boot/initrd64.img |
|||
image[sun4c,sun4d,sun4m]=/boot/vmlinux32.gz |
|||
label=linux |
|||
alias=install |
|||
initrd=/boot/initrd32.img |
|||
image[sun4u]=/boot/vmlinux64.gz |
|||
label=text |
|||
append=text |
|||
initrd=/boot/initrd64.img |
|||
image[sun4c,sun4d,sun4m]=/boot/vmlinux32.gz |
|||
label=text |
|||
append=text |
|||
initrd=/boot/initrd32.img |
|||
image[sun4u]=/boot/vmlinux64.gz |
|||
label=expert |
|||
append=expert |
|||
initrd=/boot/initrd64.img |
|||
image[sun4c,sun4d,sun4m]=/boot/vmlinux32.gz |
|||
label=expert |
|||
append=expert |
|||
initrd=/boot/initrd32.img |
|||
message=/boot/boot.msg |
|||
|
|||
# ReneR: Add texts here, later ... |
|||
|
|||
#image="cat /etc/boot.msg" |
|||
# label=1 |
|||
# single-key |
|||
|
|||
# alias |
|||
|
|||
image[sun4u]=/boot/vmlinux64.gz |
|||
label=ks |
|||
append=ks |
|||
initrd=/boot/initrd64.img |
|||
image[sun4c,sun4d,sun4m]=/boot/vmlinux32.gz |
|||
label=ks |
|||
append=ks |
|||
initrd=/boot/initrd32.img |
|||
label=install |
|||
alias=linux |
|||
initrd=/boot/initrd.img |
|||
|
|||
image[sun4c,sun4d,sun4m]=/boot/vmlinux.gz |
|||
label=install |
|||
alias=linux |
|||
initrd=/boot/initrd.img |
|||
|
|||