Skip to content

Commit

Permalink
[no ci]: cheshire
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan-Velickovic <[email protected]>
  • Loading branch information
Ivan-Velickovic committed Dec 2, 2024
1 parent cafeace commit 27b20d3
Show file tree
Hide file tree
Showing 10 changed files with 9,989 additions and 4 deletions.
42 changes: 42 additions & 0 deletions examples/simple/board/cheshire/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# QEMU ARM virt images

## Linux kernel

### Details
* Image name: `linux`
* Config name: `linux_config`
* Git remote: https://github.com/torvalds/linux.git
* Tag: v6.5 (commit hash: `2dde18cd1d8fac735875f2e4987f11817cc0bc2c`)
* Toolchain: `riscv64-linux-gnu-`
* Version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0

You can also get the Linux config used after booting by running the following
command in userspace: `zcat /proc/config.gz`.

### Instructions for reproducing
```
git clone --depth 1 --branch v6.5 https://github.com/torvalds/linux.git
cp linux_config linux/.config
make -C linux ARCH=riscv CROSS_COMPILE=riscv64-linux-gnu- all -j$(nproc)
```

The path to the image is: `linux/arch/riscv/boot/Image`.

## Buildroot RootFS image

### Details
* Image name: `rootfs.cpio.gz`
* Config name: `buildroot_config`
* Version: 2023.08.1

### Instructions for reproducing

```
wget https://buildroot.org/downloads/buildroot-2023.08.1.tar.xz
tar xvf buildroot-2023.08.1.tar.xz
cp buildroot_config buildroot-2022.08.1/.config
make -C buildroot-2023.08.1
```

The root filesystem will be located at: `buildroot-2023.08.1/output/images/rootfs.cpio.gz` along
with the other buildroot artefacts.
Loading

0 comments on commit 27b20d3

Please sign in to comment.