mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 00:49:13 -06:00
16 lines
280 B
Text
16 lines
280 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -d isolinux ]; then
|
||
|
cd binary
|
||
|
fi
|
||
|
|
||
|
cat >>isolinux/install.cfg <<END
|
||
|
|
||
|
label installspk
|
||
|
menu label Install with ^speech synthesis
|
||
|
linux /install/gtk/vmlinuz
|
||
|
initrd /install/gtk/initrd.gz
|
||
|
append video=vesa:ywrap,mtrr vga=788 speakup.synth=soft -- quiet
|
||
|
END
|
||
|
|