mirror of
https://git.yoctoproject.org/poky
synced 2026-06-04 02:00:04 +00:00
b2f192faab
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
11 lines
257 B
Bash
11 lines
257 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" != "upgrade" ]; then
|
|
update-alternatives --remove sh /bin/busybox
|
|
update-alternatives --remove vi /bin/busybox
|
|
find /etc -name [SK][0-9][0-9]hwclock.sh | xargs rm -f
|
|
find /etc -name [SK][0-9][0-9]syslog | xargs rm -f
|
|
fi
|
|
|
|
exit 0
|