summaryrefslogtreecommitdiff
path: root/etc/pacman.d
AgeCommit message (Collapse)Author
2024-03-16fix: add allow-weak-key-signatures to /etc/pacman.d/gnupg/gpg.conf, to ↵Xiao Pan
workaroud ALARM build key is sha1 and rejected by new gpg With newer version of gpg, pacman will error `Error: Signature is marginal trust` for Arch Linux ARM Build System key. It seems because Arch Linux ARM Build System key is sha1 and rejected by new versions of gpg. Need to reset all keys by: ```sh sudo rm -rf /etc/pacman.d/gnupg sudo pacman-key --init echo 'allow-weak-key-signatures' | sudo tee -a /etc/pacman.d/gnupg/gpg.conf > /dev/null sudo pacman-key --populate ``` Note, need to add `allow-weak-key-signatures` in /etc/pacman.d/gnupg/gpg.conf before `sudo pacman-key --populate`. More See https://archlinuxarm.org/forum/viewtopic.php?f=9&t=16762
2024-03-16add defaultXiao Pan
2024-02-26dirty workaround to mkinitcpio when linux-megi upgradeXiao Pan