Improve autorun.inf, make sure the disc icon displays
Closes: #772691. Thanks to jnqnfe for initial patch, slightly tweaked.
This commit is contained in:
parent
4e5ef691c4
commit
e799e742c0
|
@ -13,6 +13,8 @@ debian-cd (3.1.17) UNRELEASED; urgency=medium
|
|||
needed for extra Mac CD builds.
|
||||
* update-cd: if we're doing torrents, make sure we include update CD
|
||||
checksums in bt-$type too.
|
||||
* Improve autorun.inf, make sure the disc icon displays. Closes: #772691
|
||||
Thanks to jnqnfe for initial patch, slightly tweaked.
|
||||
|
||||
[ Ben Hutchings ]
|
||||
* generate_di+k_list: Update kernel and related package lists for mips*
|
||||
|
|
|
@ -85,6 +85,7 @@ if [ -f $CDDIR/README.html ]; then
|
|||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
label=Install Debian GNU/Hurd
|
||||
EOF
|
||||
todos > $CDDIR/autorun.bat <<EOF
|
||||
@echo Starting "README.html"...
|
||||
|
|
|
@ -99,6 +99,7 @@ if [ -f $CDDIR/README.html ]; then
|
|||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
label=Install Debian GNU/kFreeBSD
|
||||
EOF
|
||||
todos > $CDDIR/autorun.bat <<EOF
|
||||
@echo Starting "README.html"...
|
||||
|
|
|
@ -226,11 +226,24 @@ if [ -f CD$N/setup.exe ]; then
|
|||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=setup.exe
|
||||
icon=setup.exe,0
|
||||
label=Install Debian GNU/Linux
|
||||
|
||||
[Content]
|
||||
MusicFiles=false
|
||||
PictureFiles=false
|
||||
VideoFiles=false
|
||||
EOF
|
||||
elif [ -f $CDDIR/README.html ]; then
|
||||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
label=Install Debian GNU/Linux
|
||||
|
||||
[Content]
|
||||
MusicFiles=false
|
||||
PictureFiles=false
|
||||
VideoFiles=false
|
||||
EOF
|
||||
todos > $CDDIR/autorun.bat <<EOF
|
||||
@echo Starting "README.html"...
|
||||
|
|
|
@ -81,6 +81,7 @@ if [ -f $CDDIR/README.html ]; then
|
|||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
label=Install Debian GNU/Hurd
|
||||
EOF
|
||||
todos > $CDDIR/autorun.bat <<EOF
|
||||
@echo Starting "README.html"...
|
||||
|
|
|
@ -93,6 +93,7 @@ if [ -f $CDDIR/README.html ]; then
|
|||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
label=Install Debian GNU/kFreeBSD
|
||||
EOF
|
||||
todos > $CDDIR/autorun.bat <<EOF
|
||||
@echo Starting "README.html"...
|
||||
|
|
|
@ -370,11 +370,24 @@ if [ -f boot$N/setup.exe ]; then
|
|||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=setup.exe
|
||||
icon=setup.exe,0
|
||||
label=Install Debian GNU/Linux
|
||||
|
||||
[Content]
|
||||
MusicFiles=false
|
||||
PictureFiles=false
|
||||
VideoFiles=false
|
||||
EOF
|
||||
elif [ -f $CDDIR/README.html ]; then
|
||||
todos > $CDDIR/autorun.inf <<EOF
|
||||
[autorun]
|
||||
open=autorun.bat
|
||||
label=Install Debian GNU/Linux
|
||||
|
||||
[Content]
|
||||
MusicFiles=false
|
||||
PictureFiles=false
|
||||
VideoFiles=false
|
||||
EOF
|
||||
todos > $CDDIR/autorun.bat <<EOF
|
||||
@echo Starting "README.html"...
|
||||
|
|
Loading…
Reference in New Issue