Age | Commit message (Collapse) | Author |
|
added a check to the post hook to only copy files back if the original
directory is missing. this stops the hook from copying over the original
when updating a non-running kernel.
switched from `test -e` to `test -d`; -d is preferred for directories
explicitly call `cp --reflink=auto` so we're certain that the hook will
work properly on non reflink capable filesystems. default behavior when
using `--reflink` with the type unspecified is unclear.
|
|
|
|
|
|
Closes #8, thanks @cptpcrd!
|
|
All official kernels no longer install the actual kernel to /boot anymore, this is done by mkinitcpio.
https://lists.archlinux.org/pipermail/arch-announce/2019-November/000397.html
This changes the hooks to watch for vmlinuz files in /usr/lib/modules, just like mkinitcpio hook does.
|
|
|
|
|
|
|
|
Closes #2
|