So I created an custom Linux image using Yocto project which runs on qemu (qemux86-64). I enabled package-management and installed apt. I wanted to add a Debian repository in my /etc/apt/sources.list file to that I can get packages from the Debian repo.
I edited the sources.list file and added the following:
deb [trusted=yes] http://debian.mirror.net.in/debian/ stable main
and ran apt-get update
Things were going fine until I ran into the error:
W: GPG error: http://debian.mirror.net.in/debian stable InRelease: The following signatures couldn't be verified because the public key is not available: NO PUBKEY 658ACFD622F3D138 NO PUBKEY 805C6F00D6C9793
E: Failed to fetch /
Some index files failed to download. They have been ignored, or old ones used instead.
I believe this error is because I don't have any GPG keys, where can I find them? Or is there a way to bypass checking through GPG keys and getting the packages anyway?
Thank you.