This commit is contained in:
stiti
2023-12-09 17:51:11 +01:00
parent cd3bcfafbe
commit 4b25cf8981
60 changed files with 1554 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/sh
case $1 in
add)
mkinitcpio -k "$2" -g "$3"/initrd
;;
remove)
rm -f -- "$3"/initrd
;;
esac
# vim: set ft=sh ts=4 sw=4 et: