diff options
Diffstat (limited to 'default-config/etc/rc.sysinit-proxy')
-rw-r--r-- | default-config/etc/rc.sysinit-proxy | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/default-config/etc/rc.sysinit-proxy b/default-config/etc/rc.sysinit-proxy new file mode 100644 index 0000000..7b1bb50 --- /dev/null +++ b/default-config/etc/rc.sysinit-proxy @@ -0,0 +1,14 @@ +#!/bin/bash
+# we need a proxy script here to convert some /proc/cmdline
+# parameters to rc.conf settings.
+
+LOCALE_DEFAULT="en_US.UTF-8"
+TIMEZONE_DEFAULT="America/Chicago"
+KEYMAP_DEFAULT="us"
+
+sed -i "s|##LOCALE##|$(cmdline_param locale ${LOCALE_DEFAULT})|" /etc/rc.conf
+sed -i "s|##TIMEZONE##|$(cmdline_param timezone ${TIMEZONE_DEFAULT})|" /etc/rc.conf
+sed -i "s|##KEYMAP##|$(cmdline_param keymap ${KEYMAP_DEFAULT})|" /etc/rc.conf
+
+#now go to the real sysinit
+exec /etc/rc.sysinit
|