diff --git a/Documentation/ls_pro_live/root_overlay/etc/conf.d/hostname b/Documentation/ls_pro_live/root_overlay/etc/conf.d/hostname index 246a9e0..5ecaa01 100644 --- a/Documentation/ls_pro_live/root_overlay/etc/conf.d/hostname +++ b/Documentation/ls_pro_live/root_overlay/etc/conf.d/hostname @@ -1,2 +1,2 @@ # Set to the hostname of this machine -hostname="goLSPro" +hostname="goLSProLive" diff --git a/Documentation/ls_xhl/root_overlay/etc/conf.d/hostname b/Documentation/ls_xhl/root_overlay/etc/conf.d/hostname index 246a9e0..ab03d81 100644 --- a/Documentation/ls_xhl/root_overlay/etc/conf.d/hostname +++ b/Documentation/ls_xhl/root_overlay/etc/conf.d/hostname @@ -1,2 +1,2 @@ # Set to the hostname of this machine -hostname="goLSPro" +hostname="goLSXhl" diff --git a/Documentation/ls_xhl/root_overlay/etc/conf.d/local b/Documentation/ls_xhl/root_overlay/etc/conf.d/local deleted file mode 100644 index 7da1d21..0000000 --- a/Documentation/ls_xhl/root_overlay/etc/conf.d/local +++ /dev/null @@ -1,37 +0,0 @@ -# Here is where you can put anything you need to start -# that there is not an init script for. - -local_start() { - # This is a good place to load any misc programs - # on startup (use &>/dev/null to hide output) - - # want some kernel debugging over serial console (BREAK)? - #echo 1 > /proc/sys/kernel/sysrq - #echo 9 > /proc/sys/kernel/printk - - # Update the filesystem okay flag and delete boot mode trace files - # on /boot to prevent the boot failure counter reach 3 when we - # in fact booted Gentoo ok - date > /boot/rootfs_ok - rm -f /boot/rootfs_booting - rm -f /boot/initrdmode - rm -f /boot/boot.log - touch /boot/hddrootmode - - # avoid udev renaming 'eth0' bug by deleting this file: - rm -f /etc/udev/rules.d/70-persistent-net.rules - - # We should always return 0 - return 0 -} - -local_stop() { - # This is a good place to unload any misc. - # programs you started above. - - # avoid udev renaming 'eth0' bug by deleting this file: - rm -f /etc/udev/rules.d/70-persistent-net.rules - - # We should always return 0 - return 0 -}