-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
docker/linux-image.sh
script (#1405)
As promised here's the fixed `linux-image.sh` script. As outlined in #1399 this pr fixes: * Missing gpg key 8D69674688B6CB36 (Debian Ports Archive Automatic Signing Key (2024) <[email protected]>) * The binaries and busybox might also be installed into `/usr/bin/` instead of `/bin`. * The kernel modules might also installed into `/usr/lib/modules` instead of `/lib/modules`. * The kernel modules might be compressed with `xz` and end with `*.ko.xz` instead of just `*.ko` The first commit adds some vim special files to `.gitignore` and in the second commit the script was formatted with `shfmt` with standard settings and some minor issues from `shellcheck` were fixed. The third commit fixes the actual issues. Not sure if you wanna keep the first two commits but they made working on this file easier. Closes #1399
- Loading branch information
Showing
4 changed files
with
173 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"description": "fix creating `initrd` when using debian `ports` mirror and compressed kernel modules", | ||
"issues": [1399], | ||
"type": "fixed" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters