In woody, keep the time stamp of smb.bin when copying it to CD.
This commit is contained in:
parent
6e49467d61
commit
4cb787d8b2
|
@ -19,6 +19,7 @@ debian-cd (2.2.16) UNRELEASED; urgency=low
|
|||
debian-installer.
|
||||
- Document BOOTDISKS.
|
||||
- Make disk number available in tools/add-bin-doc.
|
||||
- In woody, keep the time stamp of smb.bin when copying it to CD.
|
||||
|
||||
-- Tollef Fog Heen <tfheen@debian.org> Sat, 7 Dec 2002 10:58:53 +0100
|
||||
|
||||
|
|
|
@ -82,6 +82,7 @@ cp -lf *.img $CDDIR/install
|
|||
|
||||
# Include Smart Boot Manager image for people where isolinux fails
|
||||
gzip -dc $BASEDIR/data/$CODENAME/sbm.bin.gz > $CDDIR/install/sbm.bin
|
||||
# Keep the original file timestamp
|
||||
touch -r $BASEDIR/data/$CODENAME/sbm.bin.gz $CDDIR/install/sbm.bin
|
||||
cp -p $BASEDIR/data/$CODENAME/README.sbm $CDDIR/install/
|
||||
# Isolinux config files
|
||||
|
|
|
@ -97,6 +97,8 @@ if [ "${ISOLINUX:-0}" != "0" ]; then
|
|||
# Include Smart Boot Manager image for people where isolinux doesn't
|
||||
# work
|
||||
gzip -dc $BASEDIR/data/$CODENAME/sbm.bin.gz > $CDDIR/install/sbm.bin
|
||||
# Keep the original file timestamp
|
||||
touch -r $BASEDIR/data/$CODENAME/sbm.bin.gz $CDDIR/install/sbm.bin
|
||||
cp -p $BASEDIR/data/$CODENAME/README.sbm $CDDIR/install/
|
||||
# Isolinux config files
|
||||
cp -f $BASEDIR/data/$CODENAME/isolinux.txt $BASEDIR/data/$CODENAME/f*.txt boot$N/isolinux/
|
||||
|
|
Loading…
Reference in New Issue