-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
init rootfs (debootstrap) not working in raspbian script #1
Comments
You need apt-cacher-ng in order to get it working: I will comment that string in script, leaving instructions. Anyway, if you are planning to burn few images and play with raspbian cross-compilation, I suggest to setup apt-cacher-ng and use untouched deb_local_mirror |
That might do the trick. On the other hand I got it working by modifying the the first call of debootstrap to debootstrap --foreign --no-check-gpg --include=ca-certificates --arch=armhf ${deb_release} ${rootfs} ${deb_local_mirror} edit: |
You can just download the Raspbian release key, import it into your own keyring, and then tell debootstrap to use that. i.e.
|
Thanks, I am going to release updated and better version soon :) |
Cool - I'm still struggling to get past the bit where it says that it can't On 28 November 2014 at 15:41, Andrius Kairiukstis notifications@github.com
|
Or in fact you can probably just use this once you've downloaded the key: |
debootstrap --foreign --arch armhf ${deb_release} ${rootfs} ${deb_local_mirror} does not work in Raspbian build script. Changing deb_mirror to an official Debian mirror while leaving the rest of the script untouched works.
Maybe there are some packages missing in the Raspbian repository which are necessary for creating the root filesystem.
The text was updated successfully, but these errors were encountered: