diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-03 17:56:20 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-03 17:56:20 +0000 |
commit | e88b4753781d54dc2625c3260c611d30ad76dbed (patch) | |
tree | 22af3e34a119f2e5006782c35042e90a120e1c74 /meta/packages/busybox/files/postinst | |
parent | 624549ae4ea97a96380d7aa78e4dceca428e9617 (diff) | |
download | openembedded-core-e88b4753781d54dc2625c3260c611d30ad76dbed.tar.gz openembedded-core-e88b4753781d54dc2625c3260c611d30ad76dbed.tar.bz2 openembedded-core-e88b4753781d54dc2625c3260c611d30ad76dbed.zip |
busybox: removed not used files
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3891 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/busybox/files/postinst')
-rw-r--r-- | meta/packages/busybox/files/postinst | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/meta/packages/busybox/files/postinst b/meta/packages/busybox/files/postinst deleted file mode 100644 index 36d8190f80..0000000000 --- a/meta/packages/busybox/files/postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/busybox ash - -action="$1" -oldversion="$2" - -umask 022 - -if /bin/busybox [ "$action" != configure ] -then - exit 0 -fi - -. /etc/default/functions - -setup_init_hwclock() { - updatercd hwclock.sh start 50 S . stop 25 0 1 6 . - /etc/init.d/hwclock.sh restart -} - -/bin/busybox ash /usr/bin/update-alternatives --install /bin/vi vi /bin/busybox 100 -/bin/busybox ash /usr/bin/update-alternatives --install /bin/sh sh /bin/busybox 100 - -setup_init_hwclock - -exit 0 |