* Applied patch from Robert Millan <rmh@aybabtu.com> to use win32-loader
for autorun when CD is being used on Windows. Closes: #441846.
This commit is contained in:
parent
23f2e94046
commit
8a0984b325
|
@ -8,8 +8,10 @@ debian-cd (3.0.4) UNRELEASED; urgency=low
|
|||
win32-loader. Closes: #440220.
|
||||
* Applied patch from Robert Millan <rmh@aybabtu.com> to fix image
|
||||
generation with read-only mirrors. Closes: #441397.
|
||||
* Applied patch from Robert Millan <rmh@aybabtu.com> to use win32-loader
|
||||
for autorun when CD is being used on Windows. Closes: #441846.
|
||||
|
||||
-- Otavio Salvador <otavio@ossystems.com.br> Mon, 10 Sep 2007 13:43:04 -0300
|
||||
-- Otavio Salvador <otavio@debian.org> Wed, 12 Sep 2007 13:31:32 -0300
|
||||
|
||||
debian-cd (3.0.3) unstable; urgency=low
|
||||
|
||||
|
|
|
@ -253,8 +253,14 @@ else
|
|||
fi
|
||||
fi
|
||||
|
||||
# Add autorun if we have README.html
|
||||
if [ -f $CDDIR/README.html ]; then
|
||||
# Add autorun
|
||||
if [ -f $CDDIR/setup.exe ]; then
|
||||
# when win32-loader is present, use that (it already checks for README.html)
|
||||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=setup.exe
|
||||
EOF
|
||||
elif [ -f $CDDIR/README.html ]; then
|
||||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
|
|
Loading…
Reference in New Issue