John Allwine

Results 32 comments of John Allwine

I ran into this as well, unknowingly at first. Thanks for posting this! A work around is to use the static website end point (http only): `http://.s3-website-.amazonaws.com` I believe that...

Thanks @wmanley! When it says: > This configuration file will include a special ostree= kernel argument that allows the initramfs to find (and chroot() into) the specified deployment. Do I...

I've taken my first concrete steps towards trying to get an OSTree managed Beaglebone image going. I've posted on the Beaglebone forums about it here: https://forum.beagleboard.org/t/ostree-on-beaglebone-boards/30458 If anyone has any...

That makes sense! Do you know of documentation or an example of this somewhere? I've never had to mess with initramfs.

It sounds like surgery may be necessary. The ostree docs mention [switchroot](https://github.com/ostreedev/ostree/blob/main/src/switchroot/switchroot.sh). So I could expand the initramfs and copy that over to it, but how do I ensure it...

Looks like sticking it in /scripts/init-bottom allows it to run. Now I need to dial in what it's supposed to do.

It booted! I had to insert the switchroot.sh script in between the overlayroot and udev scripts in the ORDER file in /scripts/init-bottom. Making progress...

Now I need to figure out how to properly mount all the necessary directories. /var seems particularly important to get right as it's one of the few writable locations (and...

Adding a `mount -o remount,rw $rootmnt $rootmnt` to switchroot.sh seemed to help.

I have a symbolic link for /lib directly into the deployment as U-boot is looking for overlay files in /lib/firmware prior to the kernel loading or initramfs. I'd like to...