66 lines
1.3 KiB
Bash
Executable File
66 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# This script is executed inside the image chroot before packing up.
|
|
# Architecture/platform specific code goes here, like kernel install
|
|
# and configuration
|
|
|
|
env-update
|
|
. /etc/profile
|
|
|
|
setup_boot() {
|
|
# enable sshd by default
|
|
rc-update add sshd default
|
|
rc-update add syslog-ng boot
|
|
rc-update add vixie-cron boot
|
|
rc-update add dbus boot
|
|
rc-update add NetworkManager default
|
|
rc-update add NetworkManager-setup default
|
|
|
|
# select the first available kernel
|
|
eselect uimage set 1
|
|
# cleaning up deps
|
|
rc-update --update
|
|
}
|
|
|
|
setup_users() {
|
|
# setup root password to... root!
|
|
echo root:root | chpasswd
|
|
# setup normal user "sabayon"
|
|
(
|
|
if [ ! -x "/sbin/sabayon-functions.sh" ]; then
|
|
echo "no /sbin/sabayon-functions.sh found"
|
|
exit 1
|
|
fi
|
|
. /sbin/sabayon-functions.sh
|
|
sabayon_setup_live_user "sabayon" || exit 1
|
|
# setup "sabayon" password to... sabayon!
|
|
echo "sabayon:sabayon" | chpasswd
|
|
)
|
|
}
|
|
|
|
setup_startup_caches() {
|
|
mount -t proc proc /proc
|
|
/lib/rc/bin/rc-depend -u
|
|
# Generate openrc cache
|
|
touch /lib/rc/init.d/softlevel
|
|
/etc/init.d/savecache start
|
|
/etc/init.d/savecache zap
|
|
ldconfig
|
|
ldconfig
|
|
umount /proc
|
|
}
|
|
|
|
|
|
setup_serial() {
|
|
# Setup serial login
|
|
sed -i "s:^s0.*::" /etc/inittab
|
|
echo "s0:12345:respawn:/sbin/agetty 115200 ttyO0 vt100" >> /etc/inittab
|
|
}
|
|
|
|
setup_boot
|
|
setup_users
|
|
setup_serial
|
|
setup_startup_caches
|
|
|
|
exit 0
|
|
|