From f3202e5ffec78b8c33753806af912efa311191b6 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 25 Jan 2012 15:22:26 +0100 Subject: [PATCH] busybox: add support to use oem.conf Signed-off-by: Stephan Raue --- packages/sysutils/busybox/scripts/init | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index 4d981b62e4..5decb814f3 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -38,6 +38,10 @@ # starting init scripts for wanted runlevel +if [ -f /etc/oem.conf ]; then + . /etc/oem.conf +fi + . /etc/profile progress "Starting Init Scripts"