I have a brand new Rock 5c, just setting it up.
I have flashed the eMMC with:
rock-5c_bookworm_kde_b1.output.img.xz
Everything boots ok. Now trying apt update I am getting an error that the public key is not available.
I have tried updating the key:
# Install signing keyring
keyring="$(mktemp)"
version="$(curl -L https://github.com/radxa-pkg/radxa-archive-keyring/releases/latest/download/VERSION)"
curl -L --output "$keyring" "https://github.com/radxa-pkg/radxa-archive-keyring/releases/latest/download/radxa-archive-keyring_${version}_all.deb"
sudo dpkg -i "$keyring"
rm -f "$keyring"
But I still get the error:
Err:6 https://radxa-repo.github.io/rk3588s2-bookworm rk3588s2-bookworm InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY E572249A33EB9743 NO_PUBKEY 5D93177D0752732A
Any ideas how to resolve this?