Age | Commit message (Collapse) | Author |
|
With the hook now linux-megi upgrade seems no problem.
From
https://matrix.to/#/!lmoJhRvQcNTuGtHgry:kde.org/$FWkLUkcTd5zH-8sssWP9p5jT5C9W2BZPlDKVc4WZjcE?via=kde.org&via=matrix.org&via=tchncs.de
: "It seems there's a new way to trigger mkinitcpio after linux-megi
upgrade in
https://github.com/dreemurrs-embedded/danctnix-packages/blob/16b7cd6350d272edf2f6e9ef83afdc481e5d5d37/pine64/linux-megi/PKGBUILD#L110-L113
committed on Apr 4, 2024 in this commit
https://github.com/dreemurrs-embedded/danctnix-packages/commit/5e8caa55c81b916f9cf437082d82843681213311#diff-08b52e5bad72f7ed6fc775bdfb607ab91afca57c0d056750d08ab6bf9b7bbc90R110.
So I guess my old dirty workaround is not needed any more. I will try
next several times linux-megi upgrades."
|
|
Default mirror often outputs errors like this: "error: failed retrieving
file 'core.db' from mirror.archlinuxarm.org : Connection timed out after
10002 milliseconds". So I tried to specify mirrors manually and it seems
much better now.
Another way maybe is DisableDownloadTimeout in pacman.conf, not tested.
|
|
|
|
|
|
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
|
|
|
|
|