8 lines
173 B
Plaintext
8 lines
173 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
install -Dm755 shinit "$1/usr/bin/shinit"
|
||
|
install -Dm755 poweroff "$1/usr/bin/poweroff"
|
||
|
|
||
|
ln -s shinit "$1/usr/bin/init"
|
||
|
ln -s poweroff "$1/usr/bin/reboot"
|