From 4f2c4be19c1310136ffc4c72334c71588fbc97bb Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:18:27 +0100 Subject: [PATCH] busybox: - move /etc/sysconfig to /etc/profile --- packages/sysutils/busybox/config/{sysconfig => profile} | 0 packages/sysutils/busybox/install | 3 +-- packages/sysutils/busybox/scripts/init | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) rename packages/sysutils/busybox/config/{sysconfig => profile} (100%) diff --git a/packages/sysutils/busybox/config/sysconfig b/packages/sysutils/busybox/config/profile similarity index 100% rename from packages/sysutils/busybox/config/sysconfig rename to packages/sysutils/busybox/config/profile diff --git a/packages/sysutils/busybox/install b/packages/sysutils/busybox/install index af6a354309..5999cc6866 100755 --- a/packages/sysutils/busybox/install +++ b/packages/sysutils/busybox/install @@ -23,8 +23,7 @@ USER_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw $USER_PASSWORD`" ln -sf /bin/sh $INSTALL/bin/bash mkdir -p $INSTALL/etc - cp $PKG_DIR/config/sysconfig $INSTALL/etc - cp $PKG_DIR/config/sysconfig $INSTALL/etc/profile + cp $PKG_DIR/config/profile $INSTALL/etc touch $INSTALL/etc/fstab ln -sf /var/run/resolv.conf $INSTALL/etc/resolv.conf ln -sf /var/run/hosts $INSTALL/etc/hosts diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index 6c89e467ee..acc61e6114 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -1,7 +1,7 @@ #!/bin/sh # read config - . /etc/sysconfig + . /etc/profile # getting runlevel RUNLEVEL="openelec"