You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			17 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
#!/bin/sh
 | 
						|
 | 
						|
if [ ! -d isolinux ]; then
 | 
						|
    cd binary
 | 
						|
fi
 | 
						|
 | 
						|
if ! grep "speakup.synth=soft" isolinux/install.cfg >/dev/null; then
 | 
						|
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
 | 
						|
fi
 |