-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ivan-Velickovic <[email protected]>
- Loading branch information
1 parent
cafeace
commit 27b20d3
Showing
10 changed files
with
9,989 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.