├── hppa ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── i386 ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── m68k ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── mips ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── sh4 ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── Dockerfile │ └── rootfs.tar.xz ├── qemu-sh4-static.tar.xz └── deb ├── x32 ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── Dockerfile │ └── rootfs.tar.xz └── deb ├── alpha ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile ├── qemu-alpha-static.tar.xz └── deb ├── amd64 ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── arm64 ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile ├── qemu-aarch64-static.tar.xz └── deb ├── armel ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile ├── qemu-arm-static.tar.xz └── deb ├── armhf ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile ├── qemu-arm-static.tar.xz └── deb ├── mipsel ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── Dockerfile │ └── rootfs.tar.xz └── deb ├── ppc64 ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── ppc64el ├── qemu_arch ├── arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── s390x ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile ├── qemu-s390x-static.tar.xz └── deb ├── sparc64 ├── qemu_arch ├── arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── hurd-i386 ├── arch ├── qemu_arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── kfreebsd-i386 ├── qemu_arch ├── arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── Dockerfile │ └── rootfs.tar.xz └── deb ├── powerpc ├── arch ├── qemu_arch ├── .dockerignore ├── Dockerfile ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile ├── qemu-ppc-static.tar.xz └── deb ├── powerpcspe ├── qemu_arch ├── arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── kfreebsd-amd64 ├── qemu_arch ├── arch ├── Dockerfile ├── .dockerignore ├── slim │ ├── rootfs.tar.xz │ └── Dockerfile └── deb ├── clean.sh ├── .gitignore ├── README.md ├── LICENSE └── update.sh /hppa/arch: -------------------------------------------------------------------------------- 1 | hppa 2 | -------------------------------------------------------------------------------- /i386/arch: -------------------------------------------------------------------------------- 1 | i386 2 | -------------------------------------------------------------------------------- /m68k/arch: -------------------------------------------------------------------------------- 1 | m68k 2 | -------------------------------------------------------------------------------- /mips/arch: -------------------------------------------------------------------------------- 1 | mips 2 | -------------------------------------------------------------------------------- /sh4/arch: -------------------------------------------------------------------------------- 1 | sh4 2 | -------------------------------------------------------------------------------- /x32/arch: -------------------------------------------------------------------------------- 1 | x32 2 | -------------------------------------------------------------------------------- /x32/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /alpha/arch: -------------------------------------------------------------------------------- 1 | alpha 2 | -------------------------------------------------------------------------------- /amd64/arch: -------------------------------------------------------------------------------- 1 | amd64 2 | -------------------------------------------------------------------------------- /amd64/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /arm64/arch: -------------------------------------------------------------------------------- 1 | arm64 2 | -------------------------------------------------------------------------------- /armel/arch: -------------------------------------------------------------------------------- 1 | armel 2 | -------------------------------------------------------------------------------- /armel/qemu_arch: -------------------------------------------------------------------------------- 1 | arm 2 | -------------------------------------------------------------------------------- /armhf/arch: -------------------------------------------------------------------------------- 1 | armhf 2 | -------------------------------------------------------------------------------- /armhf/qemu_arch: -------------------------------------------------------------------------------- 1 | arm 2 | -------------------------------------------------------------------------------- /hppa/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /i386/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /m68k/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mips/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mipsel/arch: -------------------------------------------------------------------------------- 1 | mipsel 2 | -------------------------------------------------------------------------------- /mipsel/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ppc64/arch: -------------------------------------------------------------------------------- 1 | ppc64 2 | -------------------------------------------------------------------------------- /ppc64/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ppc64el/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /s390x/arch: -------------------------------------------------------------------------------- 1 | s390x 2 | -------------------------------------------------------------------------------- /sh4/qemu_arch: -------------------------------------------------------------------------------- 1 | sh4 2 | -------------------------------------------------------------------------------- /sparc64/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /alpha/qemu_arch: -------------------------------------------------------------------------------- 1 | alpha 2 | -------------------------------------------------------------------------------- /arm64/qemu_arch: -------------------------------------------------------------------------------- 1 | aarch64 2 | -------------------------------------------------------------------------------- /hurd-i386/arch: -------------------------------------------------------------------------------- 1 | hurd-i386 2 | -------------------------------------------------------------------------------- /hurd-i386/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kfreebsd-i386/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /powerpc/arch: -------------------------------------------------------------------------------- 1 | powerpc 2 | -------------------------------------------------------------------------------- /powerpc/qemu_arch: -------------------------------------------------------------------------------- 1 | ppc 2 | -------------------------------------------------------------------------------- /powerpcspe/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ppc64el/arch: -------------------------------------------------------------------------------- 1 | ppc64el 2 | -------------------------------------------------------------------------------- /s390x/qemu_arch: -------------------------------------------------------------------------------- 1 | s390x 2 | -------------------------------------------------------------------------------- /sparc64/arch: -------------------------------------------------------------------------------- 1 | sparc64 2 | -------------------------------------------------------------------------------- /kfreebsd-amd64/qemu_arch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /powerpcspe/arch: -------------------------------------------------------------------------------- 1 | powerpcspe 2 | -------------------------------------------------------------------------------- /kfreebsd-amd64/arch: -------------------------------------------------------------------------------- 1 | kfreebsd-amd64 2 | -------------------------------------------------------------------------------- /kfreebsd-i386/arch: -------------------------------------------------------------------------------- 1 | kfreebsd-i386 2 | -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf [ahikmpsx]* 4 | -------------------------------------------------------------------------------- /hppa/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:hppa-slim 2 | -------------------------------------------------------------------------------- /i386/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:i386-slim 2 | -------------------------------------------------------------------------------- /m68k/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:m68k-slim 2 | -------------------------------------------------------------------------------- /mips/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:mips-slim 2 | -------------------------------------------------------------------------------- /x32/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:x32-slim 2 | -------------------------------------------------------------------------------- /amd64/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:amd64-slim 2 | -------------------------------------------------------------------------------- /mipsel/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:mipsel-slim 2 | -------------------------------------------------------------------------------- /ppc64/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:ppc64-slim 2 | -------------------------------------------------------------------------------- /ppc64el/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:ppc64el-slim 2 | -------------------------------------------------------------------------------- /sparc64/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:sparc64-slim 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | busybox-static.deb 2 | data.tar.* 3 | rootfs 4 | -------------------------------------------------------------------------------- /hurd-i386/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:hurd-i386-slim 2 | -------------------------------------------------------------------------------- /alpha/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /amd64/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /arm64/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /armel/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /armhf/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /hppa/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /i386/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /m68k/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /mips/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /powerpcspe/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:powerpcspe-slim 2 | -------------------------------------------------------------------------------- /ppc64/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /s390x/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /sh4/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /x32/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /hurd-i386/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /kfreebsd-amd64/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:kfreebsd-amd64-slim 2 | -------------------------------------------------------------------------------- /kfreebsd-i386/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:kfreebsd-i386-slim 2 | -------------------------------------------------------------------------------- /mipsel/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /powerpc/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /powerpcspe/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /ppc64el/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /sparc64/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /kfreebsd-amd64/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /kfreebsd-i386/.dockerignore: -------------------------------------------------------------------------------- 1 | rootfs 2 | data.tar.* 3 | busybox-static.deb 4 | -------------------------------------------------------------------------------- /sh4/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:sh4-slim 2 | ADD qemu-sh4-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /alpha/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:alpha-slim 2 | ADD qemu-alpha-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /alpha/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/alpha/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /amd64/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/amd64/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /arm64/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:arm64-slim 2 | ADD qemu-aarch64-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /arm64/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/arm64/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /armel/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:armel-slim 2 | ADD qemu-arm-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /armel/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/armel/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /armhf/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:armhf-slim 2 | ADD qemu-arm-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /armhf/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/armhf/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /hppa/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/hppa/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /i386/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/i386/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /m68k/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/m68k/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /mips/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/mips/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /powerpc/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:powerpc-slim 2 | ADD qemu-ppc-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /ppc64/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/ppc64/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /s390x/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM multiarch/busybox:s390x-slim 2 | ADD qemu-s390x-static.tar.xz /usr/bin 3 | -------------------------------------------------------------------------------- /s390x/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/s390x/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /sh4/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=sh4 5 | -------------------------------------------------------------------------------- /sh4/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/sh4/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /x32/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=x32 5 | -------------------------------------------------------------------------------- /x32/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/x32/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /alpha/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=alpha 5 | -------------------------------------------------------------------------------- /amd64/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=amd64 5 | -------------------------------------------------------------------------------- /arm64/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=arm64 5 | -------------------------------------------------------------------------------- /armel/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=armel 5 | -------------------------------------------------------------------------------- /armhf/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=armhf 5 | -------------------------------------------------------------------------------- /hppa/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=hppa 5 | -------------------------------------------------------------------------------- /i386/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=i386 5 | -------------------------------------------------------------------------------- /m68k/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=m68k 5 | -------------------------------------------------------------------------------- /mips/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=mips 5 | -------------------------------------------------------------------------------- /mipsel/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=mipsel 5 | -------------------------------------------------------------------------------- /mipsel/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/mipsel/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /powerpc/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/powerpc/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /ppc64/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=ppc64 5 | -------------------------------------------------------------------------------- /ppc64el/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/ppc64el/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /s390x/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=s390x 5 | -------------------------------------------------------------------------------- /sh4/qemu-sh4-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/sh4/qemu-sh4-static.tar.xz -------------------------------------------------------------------------------- /sparc64/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/sparc64/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /armel/qemu-arm-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/armel/qemu-arm-static.tar.xz -------------------------------------------------------------------------------- /armhf/qemu-arm-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/armhf/qemu-arm-static.tar.xz -------------------------------------------------------------------------------- /hurd-i386/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/hurd-i386/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /powerpc/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=powerpc 5 | -------------------------------------------------------------------------------- /powerpcspe/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/powerpcspe/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /ppc64el/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=ppc64el 5 | -------------------------------------------------------------------------------- /sparc64/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=sparc64 5 | -------------------------------------------------------------------------------- /alpha/qemu-alpha-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/alpha/qemu-alpha-static.tar.xz -------------------------------------------------------------------------------- /hurd-i386/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=hurd-i386 5 | -------------------------------------------------------------------------------- /powerpc/qemu-ppc-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/powerpc/qemu-ppc-static.tar.xz -------------------------------------------------------------------------------- /powerpcspe/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=powerpcspe 5 | -------------------------------------------------------------------------------- /s390x/qemu-s390x-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/s390x/qemu-s390x-static.tar.xz -------------------------------------------------------------------------------- /arm64/qemu-aarch64-static.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/arm64/qemu-aarch64-static.tar.xz -------------------------------------------------------------------------------- /kfreebsd-amd64/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/kfreebsd-amd64/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /kfreebsd-i386/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=kfreebsd-i386 5 | -------------------------------------------------------------------------------- /kfreebsd-i386/slim/rootfs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/busybox/master/kfreebsd-i386/slim/rootfs.tar.xz -------------------------------------------------------------------------------- /kfreebsd-amd64/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD rootfs.tar.xz / 3 | CMD ["/bin/sh"] 4 | ENV ARCH=kfreebsd-amd64 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # :earth_africa: busybox 2 | 3 | ![](https://raw.githubusercontent.com/multiarch/dockerfile/master/logo.jpg) 4 | 5 | Multiarch busybox images for Docker. 6 | 7 | * `multiarch/busybox` on [Docker Hub](https://hub.docker.com/r/multiarch/busybox/) 8 | * [Available tags](https://hub.docker.com/r/multiarch/busybox/tags/) 9 | 10 | ## License 11 | 12 | MIT 13 | -------------------------------------------------------------------------------- /sh4/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-sh4/main/b/busybox/busybox-static_1.22.0-15_sh4.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-sh4/main/b/busybox/busybox-static_1.22.0-15_sh4.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-sh4/main/b/busybox/busybox-static_1.22.0-15_sh4.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-sh4/main/b/busybox/busybox-static_1.22.0-15_sh4.deb 5 | http://ftp.de.debian.org/debian-ports//pool-sh4/main/b/busybox/busybox-static_1.22.0-15_sh4.deb 6 | http://debian.advalem.net/debian-ports//pool-sh4/main/b/busybox/busybox-static_1.22.0-15_sh4.deb 7 | -------------------------------------------------------------------------------- /x32/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-x32/main/b/busybox/busybox-static_1.22.0-15_x32.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-x32/main/b/busybox/busybox-static_1.22.0-15_x32.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-x32/main/b/busybox/busybox-static_1.22.0-15_x32.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-x32/main/b/busybox/busybox-static_1.22.0-15_x32.deb 5 | http://ftp.de.debian.org/debian-ports//pool-x32/main/b/busybox/busybox-static_1.22.0-15_x32.deb 6 | http://debian.advalem.net/debian-ports//pool-x32/main/b/busybox/busybox-static_1.22.0-15_x32.deb 7 | -------------------------------------------------------------------------------- /hppa/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-hppa/main/b/busybox/busybox-static_1.22.0-15_hppa.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-hppa/main/b/busybox/busybox-static_1.22.0-15_hppa.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-hppa/main/b/busybox/busybox-static_1.22.0-15_hppa.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-hppa/main/b/busybox/busybox-static_1.22.0-15_hppa.deb 5 | http://ftp.de.debian.org/debian-ports//pool-hppa/main/b/busybox/busybox-static_1.22.0-15_hppa.deb 6 | http://debian.advalem.net/debian-ports//pool-hppa/main/b/busybox/busybox-static_1.22.0-15_hppa.deb 7 | -------------------------------------------------------------------------------- /m68k/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-m68k/main/b/busybox/busybox-static_1.22.0-15_m68k.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-m68k/main/b/busybox/busybox-static_1.22.0-15_m68k.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-m68k/main/b/busybox/busybox-static_1.22.0-15_m68k.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-m68k/main/b/busybox/busybox-static_1.22.0-15_m68k.deb 5 | http://ftp.de.debian.org/debian-ports//pool-m68k/main/b/busybox/busybox-static_1.22.0-15_m68k.deb 6 | http://debian.advalem.net/debian-ports//pool-m68k/main/b/busybox/busybox-static_1.22.0-15_m68k.deb 7 | -------------------------------------------------------------------------------- /alpha/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-alpha/main/b/busybox/busybox-static_1.22.0-15_alpha.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-alpha/main/b/busybox/busybox-static_1.22.0-15_alpha.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-alpha/main/b/busybox/busybox-static_1.22.0-15_alpha.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-alpha/main/b/busybox/busybox-static_1.22.0-15_alpha.deb 5 | http://ftp.de.debian.org/debian-ports//pool-alpha/main/b/busybox/busybox-static_1.22.0-15_alpha.deb 6 | http://debian.advalem.net/debian-ports//pool-alpha/main/b/busybox/busybox-static_1.22.0-15_alpha.deb 7 | -------------------------------------------------------------------------------- /ppc64/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-ppc64/main/b/busybox/busybox-static_1.22.0-15_ppc64.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-ppc64/main/b/busybox/busybox-static_1.22.0-15_ppc64.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-ppc64/main/b/busybox/busybox-static_1.22.0-15_ppc64.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-ppc64/main/b/busybox/busybox-static_1.22.0-15_ppc64.deb 5 | http://ftp.de.debian.org/debian-ports//pool-ppc64/main/b/busybox/busybox-static_1.22.0-15_ppc64.deb 6 | http://debian.advalem.net/debian-ports//pool-ppc64/main/b/busybox/busybox-static_1.22.0-15_ppc64.deb 7 | -------------------------------------------------------------------------------- /sparc64/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-sparc64/main/b/busybox/busybox-static_1.22.0-15_sparc64.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-sparc64/main/b/busybox/busybox-static_1.22.0-15_sparc64.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-sparc64/main/b/busybox/busybox-static_1.22.0-15_sparc64.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-sparc64/main/b/busybox/busybox-static_1.22.0-15_sparc64.deb 5 | http://ftp.de.debian.org/debian-ports//pool-sparc64/main/b/busybox/busybox-static_1.22.0-15_sparc64.deb 6 | http://debian.advalem.net/debian-ports//pool-sparc64/main/b/busybox/busybox-static_1.22.0-15_sparc64.deb 7 | -------------------------------------------------------------------------------- /powerpcspe/deb: -------------------------------------------------------------------------------- 1 | http://opensource.exmeritus.com/mirror/debian-ports//pool-powerpcspe/main/b/busybox/busybox-static_1.22.0-15_powerpcspe.deb 2 | http://mirrors.fe.up.pt/debian-ports//pool-powerpcspe/main/b/busybox/busybox-static_1.22.0-15_powerpcspe.deb 3 | http://ftp.kr.debian.org/debian-ports//pool-powerpcspe/main/b/busybox/busybox-static_1.22.0-15_powerpcspe.deb 4 | http://debian.nctu.edu.tw/debian-ports//pool-powerpcspe/main/b/busybox/busybox-static_1.22.0-15_powerpcspe.deb 5 | http://ftp.de.debian.org/debian-ports//pool-powerpcspe/main/b/busybox/busybox-static_1.22.0-15_powerpcspe.deb 6 | http://debian.advalem.net/debian-ports//pool-powerpcspe/main/b/busybox/busybox-static_1.22.0-15_powerpcspe.deb 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Multiarch 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /i386/deb: -------------------------------------------------------------------------------- 1 | http://ftp.us.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 2 | http://http.us.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 3 | http://ftp.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 4 | http://ftp.ca.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 5 | http://ftp.mx.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 6 | http://ftp.br.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 7 | http://ftp.cl.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 8 | http://download.unesp.br/linux/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 9 | http://sft.if.usp.br/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 10 | http://debian.torredehanoi.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 11 | http://ftp.cn.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 12 | http://ftp.jp.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 13 | http://ftp.kr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 14 | http://ftp.hk.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 15 | http://ftp.tw.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 16 | http://debian.mirror.ac.za/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 17 | http://ftp.de.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 18 | http://ftp.at.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 19 | http://ftp.bg.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 20 | http://ftp.ch.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 21 | http://ftp.cz.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 22 | http://ftp.dk.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 23 | http://ftp.ee.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 24 | http://ftp.es.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 25 | http://ftp.fi.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 26 | http://ftp.fr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 27 | http://ftp.hr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 28 | http://ftp.hu.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 29 | http://ftp.ie.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 30 | http://ftp.is.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 31 | http://ftp.it.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 32 | http://ftp.lt.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 33 | http://ftp.nl.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 34 | http://ftp.no.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 35 | http://ftp.pl.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 36 | http://ftp.ro.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 37 | http://ftp.ru.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 38 | http://ftp.se.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 39 | http://ftp.si.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 40 | http://ftp.tr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 41 | http://ftp.uk.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 42 | http://ftp.au.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 43 | http://ftp.wa.au.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 44 | http://ftp.nz.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_i386.deb 45 | -------------------------------------------------------------------------------- /mips/deb: -------------------------------------------------------------------------------- 1 | http://ftp.us.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 2 | http://http.us.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 3 | http://ftp.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 4 | http://ftp.ca.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 5 | http://ftp.mx.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 6 | http://ftp.br.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 7 | http://ftp.cl.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 8 | http://download.unesp.br/linux/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 9 | http://sft.if.usp.br/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 10 | http://debian.torredehanoi.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 11 | http://ftp.cn.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 12 | http://ftp.jp.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 13 | http://ftp.kr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 14 | http://ftp.hk.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 15 | http://ftp.tw.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 16 | http://debian.mirror.ac.za/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 17 | http://ftp.de.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 18 | http://ftp.at.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 19 | http://ftp.bg.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 20 | http://ftp.ch.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 21 | http://ftp.cz.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 22 | http://ftp.dk.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 23 | http://ftp.ee.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 24 | http://ftp.es.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 25 | http://ftp.fi.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 26 | http://ftp.fr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 27 | http://ftp.hr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 28 | http://ftp.hu.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 29 | http://ftp.ie.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 30 | http://ftp.is.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 31 | http://ftp.it.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 32 | http://ftp.lt.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 33 | http://ftp.nl.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 34 | http://ftp.no.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 35 | http://ftp.pl.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 36 | http://ftp.ro.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 37 | http://ftp.ru.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 38 | http://ftp.se.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 39 | http://ftp.si.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 40 | http://ftp.tr.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 41 | http://ftp.uk.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 42 | http://ftp.au.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 43 | http://ftp.wa.au.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 44 | http://ftp.nz.debian.org/debian/pool/main/b/busybox/busybox-static_1.22.0-15+b1_mips.deb 45 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ARCHS=${ARCHS:-"alpha amd64 arm64 armel armhf hppa hurd-i386 i386 kfreebsd-amd64 kfreebsd-i386 m68k mips mipsel powerpc powerpcspe ppc64 ppc64el s390x sh4 sparc64 x32"} 4 | 5 | set -e 6 | 7 | for arch in ${ARCHS}; do 8 | mkdir -p "${arch}/slim" 9 | 10 | # arch 11 | if [ ! -f "${arch}/arch" ]; then 12 | echo "${arch}" > "${arch}/arch" 13 | fi 14 | qemu_arch=$(cat "${arch}/qemu_arch") 15 | 16 | # deb 17 | if [ ! -f "${arch}/deb" ]; then 18 | ( 19 | set -x 20 | curl -s https://packages.debian.org/sid/${arch}/busybox-static/download | tr '"' "\n" | grep -E "http://.*${arch}\\.deb" > "${arch}/deb" 21 | ) 22 | fi 23 | deb=$(head -n 1 "${arch}/deb") 24 | 25 | if [ ! -f "${arch}/busybox-static.deb" ]; then 26 | ( 27 | set -x 28 | curl "${deb}" > "${arch}/busybox-static.deb.tmp" 29 | mv "${arch}/busybox-static.deb.tmp" "${arch}/busybox-static.deb" 30 | ) 31 | fi 32 | 33 | # extract /bin/busybox 34 | if [ ! -f "${arch}/slim/rootfs/bin/busybox" ]; then 35 | ( 36 | cd "${arch}" 37 | set -x 38 | ar vx busybox-static.deb data.tar.xz data.tar.gz 39 | tar --strip=2 -xvf data.tar.* ./bin/busybox 40 | mkdir -p ./slim/rootfs/bin 41 | mv ./busybox ./slim/rootfs/bin/ 42 | ) 43 | fi 44 | 45 | # create symlinks 46 | if [ ! -f "${arch}/slim/rootfs/bin/ls" ]; then 47 | ( 48 | cd "${arch}/slim/rootfs" 49 | echo "This need binfmt to be configured" 50 | echo " docker run --rm --privileged multiarch/qemu-user-static:register --reset." 51 | for module in $("./bin/busybox" --list-modules); do 52 | mkdir -p "$(dirname $module)" 53 | ln -s /bin/busybox "${module}" 54 | done 55 | ) 56 | fi 57 | 58 | # create dirs and files 59 | if [ ! -d "${arch}/slim/rootfs/dev" ]; then 60 | ( 61 | cd "${arch}/slim/rootfs" 62 | set -x 63 | mkdir -p bin etc dev dev/pts lib proc sys tmp 64 | cp /etc/nsswitch.conf etc/nsswitch.conf 65 | echo root:x:0:0:root:/:/bin/sh > etc/passwd 66 | echo root:x:0: > etc/group 67 | ) 68 | fi 69 | 70 | # create archive 71 | if [ ! -f "${arch}/slim/rootfs.tar.xz" ]; then 72 | ( 73 | cd "${arch}/slim/rootfs" 74 | set -x 75 | tar --numeric-owner -cJf ../rootfs.tar.xz . 76 | ) 77 | fi 78 | 79 | if [ -n "${qemu_arch}" -a ! -f "${arch}/qemu-${qemu_arch}-static.tar.xz" ]; then 80 | wget https://github.com/multiarch/qemu-user-static/releases/download/v2.0.0/amd64_qemu-${qemu_arch}-static.tar.xz -O "${arch}/qemu-${qemu_arch}-static.tar.xz" 81 | fi 82 | 83 | # create Dockerifle 84 | cat > "${arch}/slim/Dockerfile" < "${arch}/Dockerfile" < "${arch}/Dockerfile" < "${arch}/.dockerignore" <