mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-25 10:49:06 +08:00
Add `ethtool` as a dependency to the rootfs image. Tested by running and building the rootfs images with both `sudo ./mkrootfs_arch.sh` and `sudo ./mkrootfs_debian.sh` and running in qemu with: ``` wget https://libbpf-ci.s3-us-west-1.amazonaws.com/x86_64/vmlinuz-5.5.0 rootfs_img=rootfs.img kernel_bzimage=vmlinuz-5.5.0 mkdir rootfs touch rootfs.img truncate -s 2G rootfs.img sudo mount -o loop rootfs.img rootfs cat ~/Downloads/libbpf-vmtest-rootfs-2022.04.25.tar.zst | sudo tar -C rootfs -I zstd -xvf - sudo install -m 755 -o root -g root /dev/stdin rootfs/etc/rcS.d/S50-startup <<'EOF' ethtool -h cat /etc/issue EOF qemu-system-x86_64 -nodefaults -display none -serial mon:stdio -enable-kvm -m 4G -drive file="${rootfs_img}",format=raw,index=1,media=disk,if=virtio,cache=none -kernel "${kernel_bzimage}" -append "root=/dev/vda rw console=ttyS0,115200" ``` The last block printed ethtool's help, confirming the presence of ethtool in the rootfs. `libbpf-vmtest-rootfs-2022.04.25.tar.zst` was generated and uploaded to S3. INDEX in libbpf/ci needs to be changed to make the CI pick it up.
41 lines
1.3 KiB
Bash
Executable File
41 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# This script builds a Debian root filesystem image for testing libbpf in a
|
|
# virtual machine. Requires debootstrap >= 1.0.95 and zstd.
|
|
|
|
set -e -u -x -o pipefail
|
|
|
|
# Check whether we are root now in order to avoid confusing errors later.
|
|
if [ "$(id -u)" != 0 ]; then
|
|
echo "$0 must run as root" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Create a working directory and schedule its deletion.
|
|
root=$(mktemp -d -p "$PWD")
|
|
trap 'rm -r "$root"' EXIT
|
|
|
|
# Install packages.
|
|
packages=binutils,busybox,elfutils,ethtool,iproute2,libcap2,libelf1,strace,zlib1g
|
|
debootstrap --include="$packages" --variant=minbase bullseye "$root"
|
|
|
|
# Remove the init scripts (tests use their own). Also remove various
|
|
# unnecessary files in order to save space.
|
|
rm -rf \
|
|
"$root"/etc/rcS.d \
|
|
"$root"/usr/share/{doc,info,locale,man,zoneinfo} \
|
|
"$root"/var/cache/apt/archives/* \
|
|
"$root"/var/lib/apt/lists/*
|
|
|
|
# Save some more space by removing coreutils - the tests use busybox. Before
|
|
# doing that, delete the buggy postrm script, which uses the rm command.
|
|
rm -f "$root/var/lib/dpkg/info/coreutils.postrm"
|
|
chroot "$root" dpkg --remove --force-remove-essential coreutils
|
|
|
|
# Apply common tweaks.
|
|
"$(dirname "$0")"/mkrootfs_tweak.sh "$root"
|
|
|
|
# Save the result.
|
|
name="libbpf-vmtest-rootfs-$(date +%Y.%m.%d).tar.zst"
|
|
rm -f "$name"
|
|
tar -C "$root" -c . | zstd -T0 -19 -o "$name"
|