https://github.com/u-root/u-root-distro
https://github.com/u-root/u-root-distro
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/u-root/u-root-distro
- Owner: u-root
- License: bsd-3-clause
- Created: 2024-02-28T01:06:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-02T23:00:09.000Z (about 1 year ago)
- Last Synced: 2024-05-03T05:58:18.122Z (about 1 year ago)
- Language: Go
- Size: 147 KB
- Stars: 1
- Watchers: 50
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# u-root builder
This repository holds no code and just builds [u-root](https://u-root.org)
images via GitHub Actions.## Try it out
Download a prebuilt u-root image from
[releases](https://github.com/linuxboot/u-root-builder/releases):```sh
curl -L -o u-root.cpio.xz https://github.com/linuxboot/u-root-builder/releases/download/v0.0.1/u-root_amd64_all.cpio.xz
```Download a
[kernel from Arch Linux](https://archlinux.org/packages/core/x86_64/linux/)
and extract it:```sh
curl -L -o linux.tar.zst https://archlinux.org/packages/core/x86_64/linux/download/
tar -xf linux.tar.zst
```Run it:
```sh
qemu-system-x86_64 -enable-kvm -machine q35 -nographic -append "console=ttyS0" \
-kernel usr/lib/modules/*/vmlinuz -initrd u-root.cpio.xz
```Run a command:
```sh
uname -a
```