aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/busybox.post-upgrade
blob: 833c05d8063af0efb2ae30a308b33770dc5ef286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# remove links that has been relocated
for link in /bin/install /bin/ip /bin/vi /usr/bin/lspci; do
	if [ -L "$link" ] && [ "$(readlink $link)" = "/bin/busybox" ]; then
		rm "$link"
	fi
done

# remove links that used to be under control of bbsuid
for link in /bin/ping /bin/ping6 /usr/bin/traceroute; do
	if [ -L "$link" ] && [ "$(readlink $link)" = "/bin/bbsuid" ]; then
		rm "$link"
	fi
done

# We need the symlinks early
exec /bin/busybox --install -s