* Support KERNEL_PARAMS for powerpc, alpha and sparc (Closes: #416230)
Thanks to Vagrant Cascadian for the patch.
This commit is contained in:
parent
dcccd50f85
commit
45617b2d30
|
@ -108,6 +108,8 @@ debian-cd (3.0.5) UNRELEASED; urgency=low
|
|||
+ Pull out the code to find the right deb and put it in a new helper
|
||||
shell script (tools/which_deb), called from Makefile and boot-* as
|
||||
needed.
|
||||
* Support KERNEL_PARAMS for powerpc, alpha and sparc (Closes: #416230)
|
||||
Thanks to Vagrant Cascadian for the patch.
|
||||
|
||||
[ Frans Pop ]
|
||||
* Allow to skip generating MD5 and SHA1 sums files.
|
||||
|
|
|
@ -78,7 +78,7 @@ if [ $NN = 1 ]; then
|
|||
mkdir -p boot$N/etc
|
||||
|
||||
RSIZE=$(expr $(zcat boot$N/boot/initrd.gz | wc --bytes) / 1024)
|
||||
OPTS="ramdisk_size=$RSIZE initrd=/boot/initrd.gz root=/dev/ram devfs=mount,dall"
|
||||
OPTS="ramdisk_size=$RSIZE initrd=/boot/initrd.gz root=/dev/ram devfs=mount,dall $KERNEL_PARAMS"
|
||||
|
||||
echo "0:boot/vmlinuz $OPTS" > boot$N/etc/aboot.conf
|
||||
echo "1:boot/vmlinuz $OPTS console=ttyS0" >> boot$N/etc/aboot.conf
|
||||
|
|
|
@ -74,6 +74,9 @@ cat $BASEDIR/data/$DI_CODENAME/yaboot/boot.msg \
|
|||
> boot.msg
|
||||
cat $BASEDIR/data/$DI_CODENAME/yaboot/yaboot.conf \
|
||||
| sed "s/CODENAME/${CODENAME}/g" > yaboot.conf
|
||||
if [ -n "$KERNEL_PARAMS" ]; then
|
||||
sed -i "/^[[:space:]]\+append=\"/ s|append=\"|append=\"$KERNEL_PARAMS |" yaboot.conf
|
||||
fi
|
||||
cp $BASEDIR/data/$DI_CODENAME/yaboot/ofboot.b ofboot.b
|
||||
|
||||
for subarch in powerpc powerpc64 prep
|
||||
|
|
|
@ -45,6 +45,9 @@ silo_deb=`$BASEDIR/tools/which_deb $MIRROR $DI_CODENAME silo`
|
|||
|
||||
# Some custom etc files
|
||||
cp -f -p $BASEDIR/data/lenny/sparc/silo.conf $inst/boot/
|
||||
if [ -n "$KERNEL_PARAMS" ]; then
|
||||
sed -i "/^[[:space:]]\+append=\"/ s|append=\"|append=\"$KERNEL_PARAMS |" $inst/boot/silo.conf
|
||||
fi
|
||||
cat $BASEDIR/data/lenny/sparc/debian.txt \
|
||||
| sed "s/\${MEDIA_TYPE}/CDROM/" \
|
||||
| sed "s/\${DEBIAN_VERSION}/${CODENAME}/g" \
|
||||
|
|
Loading…
Reference in New Issue