mirror of
https://github.com/linuxboot/heads.git
synced 2025-04-15 15:06:42 +00:00
Merge pull request #1200 from SergiiDmytruk/optional-otp
init: assign CONFIG_TPM depending on /dev/tpm0 presence
This commit is contained in:
commit
f7facf042f
@ -45,7 +45,7 @@ mount_boot()
|
||||
exec /bin/usb-init
|
||||
;;
|
||||
m )
|
||||
skip_to_menu="true"
|
||||
skip_gpg_check="true"
|
||||
break
|
||||
;;
|
||||
* )
|
||||
@ -571,7 +571,9 @@ else
|
||||
fi
|
||||
|
||||
# detect whether any GPG keys exist in the keyring, if not, initialize that first
|
||||
[[ "$skip_to_menu" != "true" ]] && check_gpg_key && update_totp && update_hotp
|
||||
[[ "$skip_gpg_check" != "true" ]] && check_gpg_key
|
||||
|
||||
update_totp && update_hotp
|
||||
|
||||
if [[ "$HOTP" = "Success" && $CONFIG_AUTO_BOOT_TIMEOUT ]]; then
|
||||
prompt_auto_default_boot
|
||||
|
13
initrd/init
13
initrd/init
@ -43,6 +43,13 @@ hwclock -l -s
|
||||
. /etc/functions
|
||||
. /etc/config
|
||||
|
||||
# set CONFIG_TPM dynamically before init
|
||||
if [ -e /dev/tpm0 ]; then
|
||||
CONFIG_TPM='y'
|
||||
else
|
||||
CONFIG_TPM='n'
|
||||
fi
|
||||
|
||||
#Specify whiptail background colors cues under FBWhiptail only
|
||||
if [ -x /bin/fbwhiptail ]; then
|
||||
export BG_COLOR_WARNING="${CONFIG_WARNING_BG_COLOR:-"--background-gradient 0 0 0 150 125 0"}"
|
||||
@ -97,6 +104,12 @@ if [ "$boot_option" = "r" ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
# Override CONFIG_TPM from /etc/config with runtime value determined above.
|
||||
#
|
||||
# Values in user config have higher priority during combining thus effectively
|
||||
# changing the value for the rest of the scripts which source /tmp/config.
|
||||
echo "export CONFIG_TPM=\"$CONFIG_TPM\"" >> /etc/config.user
|
||||
|
||||
combine_configs
|
||||
. /tmp/config
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user