* Only tell mkisofs to use the prep initrd if it's available (which it
currently isn't for 2.6.16).
This commit is contained in:
parent
e13e471f6d
commit
c017d3cf55
|
@ -21,6 +21,10 @@ debian-cd (2.2.25) UNRELEASED; urgency=low
|
|||
Makes full/netinst images have base_installable again.
|
||||
* Thiemo Seufer has resumed building images for mips.
|
||||
|
||||
[ Colin Watson ]
|
||||
* Only tell mkisofs to use the prep initrd if it's available (which it
|
||||
currently isn't for 2.6.16).
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Sun, 23 Apr 2006 20:09:44 +0200
|
||||
|
||||
debian-cd (2.2.24) unstable; urgency=low
|
||||
|
|
|
@ -38,8 +38,6 @@ install_languages $CDDIR
|
|||
|
||||
echo -n " --iso-level 2 --chrp-boot --netatalk -hfs -probe -map $BASEDIR/data/hfs.map" \
|
||||
> $N.mkisofs_opts
|
||||
# We are still missing this for prep
|
||||
echo -n " -prep-boot install/powerpc/vmlinuz-prep.initrd" >> $N.mkisofs_opts
|
||||
# For newworld Mac booting - Note, no spaces in volid!
|
||||
echo -n " -part -no-desktop -hfs-bless CD$N/install -hfs-volid Debian/PowerPC_${CODENAME}" \
|
||||
>> $N.mkisofs_opts
|
||||
|
@ -103,6 +101,11 @@ do
|
|||
|
||||
done
|
||||
|
||||
if [ -f powerpc/vmlinuz-prep.initrd ]; then
|
||||
# We are still missing this for prep
|
||||
echo -n " -prep-boot install/powerpc/vmlinuz-prep.initrd" >> $CDDIR/../$N.mkisofs_opts
|
||||
fi
|
||||
|
||||
# Copy pegasos forth script, since pegasos machines don't support yaboot yet.
|
||||
BUILD_DATE=$(date +%Y%m%d)
|
||||
cat $BASEDIR/data/$DI_CODENAME/pegasos/pegasos \
|
||||
|
|
Loading…
Reference in New Issue