summaryrefslogtreecommitdiff
path: root/scripts/iso-to-oci
AgeCommit message (Collapse)Author
2026-06-02oci: T8602: use xorriso to unpack squashfs instead of mounting ISO filesystemChristian Breunig
2026-06-02Makefile: T8602: move validation if ISO exists into individual scriptsChristian Breunig
Sometimes I do call scripts/check-qemu-install directly without the Makefile wrapper, thus it should be ensured that the ISO image exists also from within the test-case launcher, too.
2026-03-09oci: T8366: remove features from container image which are not supportedChristian Breunig
Running containers on VyOS on a container platform seems like an odd use-case so we remove it in the beginning. Also interacting with the Kernel and safety reboots will be removed from the "system options" tree. * system option kernel * system option startup-beep * system option root-partition-auto-resize * system option reboot-on-panic * system option performance
2023-11-26Makefile: T2640: add helper to convert ISO to OCI image to start a containerChristian Breunig
Use either "make oci" or call the script manually: $ scripts/iso-to-oci build/live-image-amd64.hybrid.iso I: mount ISO build/live-image-amd64.hybrid.iso I: extracting squashfs content I: generate OCI container image vyos-1.5-strongswan-202311241125.tar I: to import the previously generated OCI image to your local images run: docker import vyos-1.5-strongswan-202311241125.tar vyos:1.5-strongswan-202311241125 --change 'CMD [/sbin/init]'