fbd3460684
- added destination homeros-nano.iso yields minimal speaking image; - added "homeros" feature contain scripts appropriate for general Homeros functions but need further development.
14 lines
178 B
Bash
Executable File
14 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cat <<EOF > /etc/rc.d/rc.local
|
|
#!/bin/sh
|
|
|
|
amixer set Master 100%
|
|
amixer set Master toggle
|
|
amixer set PCM 100%
|
|
amixer set PCM toggle
|
|
|
|
EOF
|
|
|
|
chmod 755 /etc/rc.d/rc.local
|