Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
655
Issues
655
List
Boards
Labels
Service Desk
Milestones
Merge Requests
222
Merge Requests
222
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
35c2ef29
Commit
35c2ef29
authored
Dec 16, 2009
by
Natanael Copa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main/mkinitfs: cleanup links and initramfs on uninstall
(cherry picked from commit
b6c52245
)
parent
5c45ab7f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
main/mkinitfs/APKBUILD
main/mkinitfs/APKBUILD
+1
-1
main/mkinitfs/mkinitfs.trigger
main/mkinitfs/mkinitfs.trigger
+13
-4
No files found.
main/mkinitfs/APKBUILD
View file @
35c2ef29
# 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"
...
...
main/mkinitfs/mkinitfs.trigger
View file @
35c2ef29
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment