mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-17 01:46:58 +02:00
sys-kernel: allow fips mode to be enabled
With this kernel config, users can boot with fips=1 set in `/usr/share/oem/grub.cfg`: ``` set linux_append="fips=1" ``` Which triggers various behaviors, for FIPS 200 certification. with this config compiled in, and that boot parameter, users can can that fips is enabled with: ``` flatcar ~ # cat /proc/sys/crypto/fips_enabled 1 ```
This commit is contained in:
parent
19a486c58d
commit
38a01288e1
@ -0,0 +1 @@
|
||||
- Enabled the FIPS support for the Linux kernel, which users can now choose through a kernel parameter in `grub.cfg` (check it taking effect with `cat /proc/sys/crypto/fips_enabled`) ([PR#1602](https://github.com/flatcar-linux/coreos-overlay/pull/1602))
|
@ -126,6 +126,7 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=m
|
||||
CONFIG_CPU_FREQ_STAT=y
|
||||
# CONFIG_CROSS_MEMORY_ATTACH is not set
|
||||
CONFIG_CRYPTO_CTS=m
|
||||
CONFIG_CRYPTO_FIPS=y
|
||||
CONFIG_CRYPTO_GCM=m
|
||||
CONFIG_CRYPTO_HMAC=y
|
||||
CONFIG_CRYPTO_LZO=m
|
||||
|
Loading…
Reference in New Issue
Block a user