Thierry Laurion
ebdfad3655
boards CONFIG_FLASH_OPTIONS: 'flashprog memory' -> 'flashprog' since flashprog aims to be compatible with flashrom
...
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2024-10-29 08:58:09 -04:00
Thierry Laurion
b9495130cf
boards FLASH_OPTIONS: remove --noverify/--noverify-all for now
...
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2024-10-29 08:58:09 -04:00
Thierry Laurion
d9ad27f372
boards FLASH_OPTIONS: add --noverify. No point verifying flash with internal programmer?
...
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2024-10-29 08:58:09 -04:00
Thierry Laurion
9b101f1454
flash.sh: FLASHROM_OPTIONS->FLASH_OPTIONS: require FLASH_OPTIONS to specify flash program in board configs
...
- boards: switch flashrom->flashprog, FLASH_OPTIONS: flashprog memory --progress --programmer internal
TODO: check, Might break:
- xx20 : x220/t420/t520: used hwseq: verify compat
- legacy : not sure --ifd bios are support: verify compat (and drop, future PR drop legacy boards anyway...)
- talos: linux_mtd is used: verify compat
Tested:
- x230 works with awesome progress bar on read, erase and write.
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2024-10-29 08:58:09 -04:00
Thierry Laurion
3574e12be9
board configs: remove CONFIG_BOOT_DEV so detect_boot_device detects it prior of oem-factory-reset usage
...
repro:
sed -i '/CONFIG_BOOT_DEV/d' boards/*/*.config unmaintained_boards/*/*.config
qemu debug trace on preinstalled OS:
[ 3.999725] [U] hello world
[ 4.286215] DEBUG: Debug output enabled from board CONFIG_DEBUG_OUTPUT=y option (/etc/config)
[ 4.315239] TRACE: Under init
[ 4.369379] DEBUG: Applying panic_on_oom setting to sysctl
[ 4.588333] TRACE: /bin/cbfs-init(5): main
[ 4.728310] TRACE: /bin/cbfs-init(24): main
[ 4.867039] DEBUG: TPM: Will extend PCR[7] with hash of filename /.gnupg/pubring.kbx
[ 4.946757] TRACE: /bin/tpmr(788): main
[ 5.006987] DEBUG: TPM: Extending PCR[7] with hash 7ccf4f64044946cf4e5b0efe3d959f00562227ae
[ 5.068692] DEBUG: exec tpm extend -ix 7 -ic /.gnupg/pubring.kbx
[ 5.326365] DEBUG: TPM: Will extend PCR[7] hash content of file /.gnupg/pubring.kbx
[ 5.399511] TRACE: /bin/tpmr(788): main
[ 5.460618] DEBUG: TPM: Extending PCR[7] with hash 547ca343719d3aa62af4763357d8c10cb35eae55
[ 5.524608] DEBUG: exec tpm extend -ix 7 -if /.gnupg/pubring.kbx
[ 5.752340] TRACE: /bin/cbfs-init(24): main
[ 5.908677] DEBUG: TPM: Will extend PCR[7] with hash of filename /.gnupg/trustdb.gpg
[ 5.988169] TRACE: /bin/tpmr(788): main
[ 6.044996] DEBUG: TPM: Extending PCR[7] with hash 7236ea8e612c1435259a8a0f8e0a8f1f5dba7042
[ 6.101604] DEBUG: exec tpm extend -ix 7 -ic /.gnupg/trustdb.gpg
[ 6.371341] DEBUG: TPM: Will extend PCR[7] hash content of file /.gnupg/trustdb.gpg
[ 6.451878] TRACE: /bin/tpmr(788): main
[ 6.511948] DEBUG: TPM: Extending PCR[7] with hash 4697c489f359b40dd8aec55df52a33b1f580a3df
[ 6.572785] DEBUG: exec tpm extend -ix 7 -if /.gnupg/trustdb.gpg
[ 6.879519] TRACE: /bin/key-init(6): main
[ 8.239618] TRACE: Under /etc/ash_functions:combine_configs
[ 8.323781] TRACE: Under /etc/ash_functions:pause_recovery
!!! Hit enter to proceed to recovery shell !!!
[ 8.572855] TRACE: /bin/setconsolefont.sh(6): main
[ 8.631296] DEBUG: Board does not ship setfont, not checking console font
[ 8.887295] TRACE: /bin/gui-init(641): main
[ 8.920627] TRACE: /etc/functions(715): detect_boot_device
[ 9.251212] TRACE: /etc/functions(682): mount_possible_boot_device
[ 9.312602] TRACE: /etc/functions(642): is_gpt_bios_grub
[ 9.410830] TRACE: /dev/vda1 is partition 1 of vda
[ 9.540007] TRACE: /etc/functions(619): find_lvm_vg_name
[ 9.707187] TRACE: Try mounting /dev/vda1 as /boot
[ 9.766843] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null)
[ 9.825028] TRACE: /bin/gui-init(319): clean_boot_check
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2024-09-09 10:35:03 -04:00
Jonathon Hall
65f0b905f6
boards/librem*, config/linux-librem*: Enable mobile tethering
...
Enable mobile tethering on all Librem boards.
Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
2024-02-22 12:35:41 -05:00
Jonathon Hall
0a823cb491
Allow laptops to include optional USB keyboard support
...
Laptops can include optional USB keyboard support (default off unless
the board also sets the default to 'y'). The setting is in the
configuration GUI.
CONFIG_USER_USB_KEYBOARD is now the user-controlled setting on those
boards. 'CONFIG_USB_KEYBOARD' is no longer used to avoid any conflict
with prior releases that expect this to be a compile-time setting only
(conflicts risk total lock out requiring hardware flash, so some
caution is justified IMO).
Boards previously exporting CONFIG_USB_KEYBOARD now export
CONFIG_USB_KEYBOARD_REQUIRED. Those boards don't have built-in
keyboards, USB keyboard is always enabled. (librem_mini,
librem_mini_v2, librem_11, librem_l1um, librem_l1um_v2, talos-2,
kgpe-d16_workstation-usb_keyboard, x230-hotp-maximized_usb-kb).
Librem laptops now export CONFIG_SUPPORT_USB_KEYBOARD to enable
optional support. The default is still 'off'.
Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
2024-01-10 15:38:06 -05:00
Thierry Laurion
61843d890b
Unify upstream board config defaults
...
- Upstream boards will not deactivate TPM DUK
- Upstream will not force BRAND_NAME which currently defaults to Heads
- Upstream will not deactivate Qr code on screen output on HOTP sealing
- Upstream will not offer OEM reset defaults (deprecated and now default anyway)
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2023-12-19 13:05:46 -05:00
Thierry Laurion
b8a06c5351
Librems/Nitropad: enable QR code printed on screen at TOTP/HOTP Generation
...
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2023-12-16 13:15:14 -05:00
Thierry Laurion
d8f098cd53
All board configs: first line now BRAND_NAME=Heads to ease rebranding with sed scripts for downstream projects/forks
...
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2023-12-16 12:56:58 -05:00
Thierry Laurion
bac35e3b3e
Librems/Nitropad: enable TPM DUK under Heads branding (CONFIG_TPM_NO_LUKS_DISK_UNLOCK=n)
...
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
2023-12-16 12:52:19 -05:00
Jonathon Hall
55155f6558
boards/librem_11: Add Librem 11
...
Add Librem 11 board.
Librem 11 uses coreboot graphics init, which is done with FSP GOP.
Set a custom keymap for the volume/power keys. Configure the volume
keys as up/down arrows (for navigation in fbwhiptail, and for shell
history in the Linux console). Configure the power key as Enter.
Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
2023-09-29 15:36:30 -04:00