-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for OpenRC and deblobbing.
- Loading branch information
Showing
4 changed files
with
112 additions
and
11 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.TH BUILDKERNEL 8 "Version 1.0.10: January 2015" | ||
.TH BUILDKERNEL 8 "Version 1.0.11: August 2015" | ||
.SH NAME | ||
buildkernel \- build secure boot kernel, save to EFI system partition | ||
.SH SYNOPSIS | ||
|
@@ -14,7 +14,9 @@ Specifically, the assumed use-case for \fBbuildkernel\fR is where you are creati | |
for use in a dual-factor-authenticated LVM-over-LUKS system, booting from an | ||
external USB key, with secure boot enabled (using UEFI), where you | ||
may (optionally) wish to use the \fBplymouth\fR(8) splash manager, and where | ||
the target (final) init system is \fBsystemd\fR(8). | ||
the target (final) init system is \fBsystemd\fR(1). | ||
(As of version 1.0.11, \fBOpenRC\fR(8) is also supported as a target | ||
init system.) | ||
|
||
To facilitate this, \fBbuildkernel\fR will create a statically linked version | ||
of \fBgpg\fR(1) \(em one which furthermore does not require \fBpinentry\fR \(em | ||
|
@@ -208,7 +210,8 @@ then you should instead set the \fBLUKS\fR path directly, via the | |
.PP | ||
Please see the \fBbuildkernel.conf\fR(5) manpage for additional optional, | ||
but important, variables which may be set (including \fBKEYMAP\fR to specify | ||
the early-boot keymap). | ||
the early-boot keymap, and \fBINITSYSTEM\fR, if targeting \fBOpenRC\fR(8) rather | ||
than the default \fBsystemd\fR(1)). | ||
.SH EXIT STATUS | ||
The exit status is 0 if the kernel build completed successfully, and 1 otherwise. | ||
.SH BUGS | ||
|
@@ -245,4 +248,5 @@ sakaki \(em send bug reports or comments to <[email protected]> | |
.BR lvm (8), | ||
.BR plymouth (8), | ||
.BR umount (8), | ||
.BR openrc (8), | ||
.BR portage (5). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.TH BUILDKERNEL 5 "Version 1.0.10: January 2015" | ||
.TH BUILDKERNEL 5 "Version 1.0.11: August 2015" | ||
.SH NAME | ||
buildkernel.conf \- a configuration file for \fBbuildkernel\fR(8) | ||
.SH SYNOPSIS | ||
|
@@ -127,6 +127,15 @@ If you are on a system that | |
expects \fIonly\fR a Microsoft boot loader, you may have to change this path to | ||
\fI/EFI/Microsoft/Boot\fR. | ||
|
||
Most users will not need to override the default. | ||
.br | ||
.TP | ||
.BR INITSYSTEM | ||
If you are targeting \fBOpenRC\fR(8) (rather than \fBsystemd\fR(1)) boot, | ||
uncomment this variable, | ||
and set it to \fB"openrc"\fR (the capitalization is unimportant). | ||
If left commented out, a value of \fB"systemd"\fR will be assumed. | ||
|
||
Most users will not need to override the default. | ||
.RE | ||
.SH FUNCTIONS | ||
|
@@ -166,9 +175,11 @@ sakaki \(em send bug reports or comments to <[email protected]> | |
.BR bash (1), | ||
.BR cpio (1L), | ||
.BR gpg (1), | ||
.BR systemd (1), | ||
.BR cryptsetup (8), | ||
.BR genkernel (8), | ||
.BR init (8), | ||
.BR lvm (8), | ||
.BR plymouth (8), | ||
.BR openrc (8), | ||
.BR portage (5). |