9a2b86eaa6
- Use busybox-container, much smaller OBS-URL: https://build.opensuse.org/request/show/729402 OBS-URL: https://build.opensuse.org/package/show/devel:kubic:containers/tumbleweed-busybox-image?expand=0&rev=10
33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
#!/usr/bin/busybox-container sh
|
|
|
|
#======================================
|
|
# Functions...
|
|
#--------------------------------------
|
|
# don't source .kconfig, works only with bash
|
|
#test -f /.kconfig && . /.kconfig
|
|
test -f /.profile && . /.profile
|
|
|
|
#======================================
|
|
# Greeting...
|
|
#--------------------------------------
|
|
echo "Configure image: [$kiwi_iname]..."
|
|
|
|
/usr/bin/busybox-container ln -sf busybox-container /usr/bin/busybox
|
|
/usr/bin/busybox ln -sf ../usr/bin/busybox /bin/ln
|
|
/usr/bin/busybox ln -sf ../usr/bin/busybox /bin/rm
|
|
/usr/bin/busybox ln -sf ../usr/bin/busybox /bin/mkdir
|
|
/usr/bin/busybox ln -sf ../usr/bin/busybox /bin/chmod
|
|
/usr/bin/busybox ln -sf busybox /usr/bin/sort
|
|
/usr/bin/busybox ln -sf busybox /usr/bin/uniq
|
|
/usr/bin/busybox ln -sf busybox /usr/bin/install
|
|
/usr/bin/busybox ln -sf busybox /usr/bin/dirname
|
|
/usr/bin/busybox ln -sf busybox /usr/bin/basename
|
|
/usr/bin/busybox-container.install / --symlinks
|
|
/bin/rm linuxrc
|
|
/bin/rm /usr/bin/busybox
|
|
/bin/rm /usr/bin/busybox-container
|
|
/bin/rm /usr/bin/busybox-container.install
|
|
/bin/rm -rf /usr/share/busybox
|
|
|
|
exit 0
|