⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 busybox.postinst

📁 GPE内核镜像文件 已在qemu上跑过的
💻 POSTINST
字号:
	# If we are not making an image we create links for the utilities that doesn't exist	# so the update-alternatives script will get the utilities it needs	# (update-alternatives have no problem replacing links later anyway)	test -n 2> /dev/null || alias test='busybox test'	if test "x$D" = "x"; then while read link; do if test ! -h "$link"; then case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; esac; busybox ln -s $to $link; fi; done </etc/busybox.links; fi	# This adds the links, remember that this has to work when building an image too, hence the $D	while read link; do case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; esac; bn=`basename $link`; update-alternatives --install $link $bn $to 50; done <$D/etc/busybox.linksif test "x$D" != "x"; then	OPT="-r $D"else	OPT="-s"fiupdate-rc.d $OPT syslog defaults

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -