mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-04 17:39:12 -07:00
b79cf7a7eb
Former-commit-id: 190f610ae1
15 lines
280 B
Bash
Executable file
15 lines
280 B
Bash
Executable file
#!/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
|
|
|