aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/busybox.trigger
blob: 2a7535e18e941db648d59a4545b7d3a8f80c94b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

do_bb_install=

for i in "$@"; do
	case "$i" in
		/lib/modules/*)
			if [ -d "$i" ]; then
				/bin/busybox depmod ${i#/lib/modules/}
			fi
			;;
		*) do_bb_install=yes;;
	esac
done

if [ -n "$do_bb_install" ]; then
	[ -e /bin/bbsuid ] && /bin/bbsuid --install
	[ -e /bin/busybux-extras ] && /bin/busybox-extras --install -s
	/bin/busybox --install -s
fi