Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 814 Bytes

File metadata and controls

33 lines (23 loc) · 814 Bytes

bootimage

A set of scripts, etc. for making a bootable image that runs breakin.

Building with Github Actions

The Build job will run on every push. To make a new release, push a new tag.

Building on Docker

To generate the kernel and initramfs via Docker, start by building the build container:

docker build . -t bootimage:latest

Then, to build breakin and generate the kernel + initramfs + ISO, run:

docker run -v "${PWD}":/mnt/out -it bootimage:latest

Upon success, you'll have three files vmlinux, initramfs, and bootimg.iso in the current directory.