-
Notifications
You must be signed in to change notification settings - Fork 53
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
Test ARM on native hardware #930
Comments
The image link above should be changed to something like |
Currently experimenting with name: "Immutable Layout"
stages:
boot:
- name: "Create COS_PERSISTENT"
commands:
- |
RECOVERY=$(blkid -L COS_RECOVERY || true)
mkdir /run/rec
mount $RECOVERY /run/rec
if [ ! -e "/run/rec/persistent.img" ]; then
dd if=/dev/zero of=/run/rec/persistent.img bs=1MB count=100
mkfs.ext4 /run/rec/persistent.img -L COS_PERSISTENT
fi
export DRIVE=$(losetup -f "/run/rec/persistent.img" --show)
kpartx -va $DRIVE
mount $DRIVE /usr/local |
**Tested image ** cOS-example-rpi-0.7.15-g2db1242a Upgrade active
Upgrade is running but I am getting this error in the end, not sure if this is an issue. Upgrade recovery After upgrade recovery is unbootable, grub is bailing out on:
Reset Reset is failing with:
Reset is also updating the |
The images are not signed, can you try with |
Results in different errors:
|
I have tried with 16GB of storage for |
Closing for now as we have initial support for ARM in our development documentation |
as #526 is in with #867 and #918 we can test cOS on native hardware.
Keep in mind that the default example images and the arm builder script partitions by default the SD image without a
COS_PERSISTENT
partition set, so needs a cloud-init setup similar to https://rancher-sandbox.github.io/cos-toolkit-docs/docs/getting-started/booting/#cloud-images (see cloud-init layout example), which should provided as result of this card too, as part of documentationWe need to test if at least if the minimum core set of functionalities are working on RPI3/4.
Action items
Notes
To get the image:
# Image will be available at rpi-image/build/*.img, and can be used with dd sudo luet util unpack quay.io/costoolkit/examples:rpi-0.7.9-3-g1128618e.img rpi-image
The text was updated successfully, but these errors were encountered: