diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-09-07 05:16:41 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-09-07 05:16:41 +0000 |
| commit | f640b4ee9d98fec302c0a631a81ac01de4a42283 (patch) | |
| tree | 71b92678beb100867057e827436ad1736a570e4e /repos/extra/linux/postinstall | |
| parent | c09688749462898ade41f76ed66fe67983a70c4a (diff) | |
| download | alicelinux-f640b4ee9d98fec302c0a631a81ac01de4a42283.tar.gz alicelinux-f640b4ee9d98fec302c0a631a81ac01de4a42283.zip | |
linux: updated to 6.12.45
Diffstat (limited to 'repos/extra/linux/postinstall')
| -rwxr-xr-x | repos/extra/linux/postinstall | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/repos/extra/linux/postinstall b/repos/extra/linux/postinstall index 4eabef1b..04b6aa2f 100755 --- a/repos/extra/linux/postinstall +++ b/repos/extra/linux/postinstall @@ -1,6 +1,7 @@ #!/bin/sh for i in /lib/modules/*; do - [ -f $i/modules.dep ] || continue + [ -f $i/current ] || continue depmod ${i##*/} + mkinitrd -k ${i##*/} /boot/initrd-linux done |