diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-12-16 20:13:32 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-12-16 20:13:32 +0000 |
commit | b6c5224513cf1eeabfbb30bafa4d098794b902fb (patch) | |
tree | e2f8c6cb51fc6b9fd5182b58c833f471818e684d /main/mkinitfs | |
parent | ce00a965a02eab8138760f441295025f0174b381 (diff) | |
download | aports-b6c5224513cf1eeabfbb30bafa4d098794b902fb.tar.bz2 aports-b6c5224513cf1eeabfbb30bafa4d098794b902fb.tar.xz |
main/mkinitfs: cleanup links and initramfs on uninstall
Diffstat (limited to 'main/mkinitfs')
-rw-r--r-- | main/mkinitfs/APKBUILD | 2 | ||||
-rw-r--r-- | main/mkinitfs/mkinitfs.trigger | 17 |
2 files changed, 14 insertions, 5 deletions
diff --git a/main/mkinitfs/APKBUILD b/main/mkinitfs/APKBUILD index 8f2789fbcc..c3f3e767c4 100644 --- a/main/mkinitfs/APKBUILD +++ b/main/mkinitfs/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=mkinitfs pkgver=2.0_rc6 -pkgrel=1 +pkgrel=2 pkgdesc="Tool to generate initramfs images for Alpine" url=http://git.alpinelinux.org/cgit/mkinitfs depends="busybox apk-tools>=2.0_rc7" diff --git a/main/mkinitfs/mkinitfs.trigger b/main/mkinitfs/mkinitfs.trigger index c181233e8b..f21a157e5e 100644 --- a/main/mkinitfs/mkinitfs.trigger +++ b/main/mkinitfs/mkinitfs.trigger @@ -3,16 +3,19 @@ for i in "$@"; do # get last element in path flavor=${i##*/} + if ! [ -f "$i"/kernel.release ]; then + # kernel was uninstalled + rm -f $( readlink -f /boot/initramfs-$flavor ) \ + /boot/initramfs-$flavor /boot/vmlinuz-$flavor \ + /boot/$flavor /boot/$flavor.gz /$flavor /$flavor.gz + continue + fi abi_release=$(cat "$i"/kernel.release) initfs=initramfs-$abi_release mkinitfs -o /boot/$initfs $abi_release ln -sf $initfs /boot/initramfs-$flavor ln -sf vmlinuz-$abi_release /boot/vmlinuz-$flavor - # extlinux will use path relative partition, so if /boot is on a - # separate partition we want /boot/<kernel> resolve to /<kernel> - [ -e /boot/boot ] || ln -sf / /boot/boot - #this is for compat. to be removed eventually... ln -sf vmlinuz-$flavor /boot/$flavor ln -sf initramfs-$flavor /boot/$flavor.gz @@ -29,3 +32,9 @@ for i in "$@"; do fi done +# extlinux will use path relative partition, so if /boot is on a +# separate partition we want /boot/<kernel> resolve to /<kernel> +if ! [ -e /boot/boot ]; then + ln -sf / /boot/boot +fi + |