-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[202211] Add Secure Boot Kernel configuration backport (#316)
Backport of #298 & #300 In order to support the Secure Boot feature it required some modifications when building the Linux Kernel. This PR contained the kernel configuration aggregations to support it. sonic-buildimage PR link: sonic-net/sonic-buildimage#14963 HLD: sonic-net/SONiC#1028
- Loading branch information
1 parent
cc69246
commit baaa137
Showing
4 changed files
with
157 additions
and
67 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
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,21 @@ | ||
[common] | ||
|
||
[amd64] | ||
CONFIG_MODULE_SIG_SHA256 | ||
# For mellanox | ||
CONFIG_SECURITY_LOCKDOWN_LSM | ||
CONFIG_SECURITY_LOCKDOWN_LSM_EARLY | ||
CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE | ||
CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT | ||
|
||
[arm64] | ||
CONFIG_MODULE_SIG_SHA256 | ||
# For mellanox | ||
CONFIG_SECURITY_LOCKDOWN_LSM | ||
CONFIG_SECURITY_LOCKDOWN_LSM_EARLY | ||
CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE | ||
CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT | ||
|
||
[armhf] | ||
|
||
[marvell-armhf] |
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,19 @@ | ||
[common] | ||
|
||
[amd64] | ||
CONFIG_SYSTEM_TRUSTED_KEYS="debian/certs/debian-uefi-certs.pem" | ||
CONFIG_MODULE_SIG_HASH="sha512" | ||
CONFIG_MODULE_SIG_SHA512=y | ||
CONFIG_KEXEC_SIG_FORCE=y | ||
CONFIG_MODULE_SIG_FORCE=y | ||
|
||
[arm64] | ||
CONFIG_SYSTEM_TRUSTED_KEYS="debian/certs/debian-uefi-certs.pem" | ||
CONFIG_MODULE_SIG_HASH="sha512" | ||
CONFIG_MODULE_SIG_SHA512=y | ||
CONFIG_KEXEC_SIG_FORCE=y | ||
CONFIG_MODULE_SIG_FORCE=y | ||
|
||
[armhf] | ||
|
||
[marvell-armhf] |