Merge pull request #1200 from SergiiDmytruk/optional-otp

init: assign CONFIG_TPM depending on /dev/tpm0 presence
This commit is contained in:
tlaurion 2022-08-24 10:38:16 -04:00 committed by GitHub
commit f7facf042f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 2 deletions

View File

@ -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

View File

@ -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