Skip to content

Instantly share code, notes, and snippets.

View clicseo's full-sized avatar
💻

Clicseo clicseo

💻
View GitHub Profile
@clicseo
clicseo / gist:cea6821f446242da38e83a9f25a5f68b
Created June 15, 2024 12:39
Minimal busybox & musl linux distro
#!/usr/bin/env bash
set -e
BUSYBOX_URL="https://busybox.net/downloads/binaries/1.31.0-defconfig-multiarch-musl/busybox-x86_64"
MUSL_URL="https://musl.libc.org/releases/musl-1.2.4.tar.gz"
KERNEL_URL="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.95.tar.xz"
OS_NAME="MinimalLinux.iso"
ROOTFS="/tmp/root"
KERNEL_VERSION="5.10.95"