├── .dockerignore ├── .drone.yml ├── .gitignore ├── Dockerfile.dapper ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── iptables-detect ├── README.md ├── iptables-detect.sh └── xtables-set-mode.sh ├── package ├── busybox │ ├── 0001-networking-libiproute-use-linux-if_packet.h-instead-.patch │ ├── 0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch │ └── busybox.config ├── conntrack-tools │ ├── 0100-static.patch │ ├── Config.in │ ├── conntrack-tools.hash │ └── conntrack-tools.mk ├── fakeroot │ └── 0100-fixup.patch ├── fuse-overlayfs │ └── Config.in └── ipset │ └── 0001-ipset-Fix-implicit-declaration-of-function-basename.patch ├── patches ├── 0100-package-iproute2-fixup.patch ├── 0100-package-iptables-static.patch ├── 0100-package-libcap-fixup.patch ├── 0100-package-libfuse3-static.patch ├── 0100-package-libtirpc-fixup.patch ├── 0100-package-linux-headers-install.patch └── 0100-package-nfs-utils-fixup.patch └── scripts ├── build ├── ci ├── download ├── entry ├── package └── patch /.dockerignore: -------------------------------------------------------------------------------- 1 | ./build 2 | ./dist 3 | -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.dapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/Dockerfile.dapper -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/Vagrantfile -------------------------------------------------------------------------------- /iptables-detect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/iptables-detect/README.md -------------------------------------------------------------------------------- /iptables-detect/iptables-detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/iptables-detect/iptables-detect.sh -------------------------------------------------------------------------------- /iptables-detect/xtables-set-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/iptables-detect/xtables-set-mode.sh -------------------------------------------------------------------------------- /package/busybox/0001-networking-libiproute-use-linux-if_packet.h-instead-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/busybox/0001-networking-libiproute-use-linux-if_packet.h-instead-.patch -------------------------------------------------------------------------------- /package/busybox/0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/busybox/0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch -------------------------------------------------------------------------------- /package/busybox/busybox.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/busybox/busybox.config -------------------------------------------------------------------------------- /package/conntrack-tools/0100-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/conntrack-tools/0100-static.patch -------------------------------------------------------------------------------- /package/conntrack-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/conntrack-tools/Config.in -------------------------------------------------------------------------------- /package/conntrack-tools/conntrack-tools.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/conntrack-tools/conntrack-tools.hash -------------------------------------------------------------------------------- /package/conntrack-tools/conntrack-tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/conntrack-tools/conntrack-tools.mk -------------------------------------------------------------------------------- /package/fakeroot/0100-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/fakeroot/0100-fixup.patch -------------------------------------------------------------------------------- /package/fuse-overlayfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/fuse-overlayfs/Config.in -------------------------------------------------------------------------------- /package/ipset/0001-ipset-Fix-implicit-declaration-of-function-basename.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/package/ipset/0001-ipset-Fix-implicit-declaration-of-function-basename.patch -------------------------------------------------------------------------------- /patches/0100-package-iproute2-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-iproute2-fixup.patch -------------------------------------------------------------------------------- /patches/0100-package-iptables-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-iptables-static.patch -------------------------------------------------------------------------------- /patches/0100-package-libcap-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-libcap-fixup.patch -------------------------------------------------------------------------------- /patches/0100-package-libfuse3-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-libfuse3-static.patch -------------------------------------------------------------------------------- /patches/0100-package-libtirpc-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-libtirpc-fixup.patch -------------------------------------------------------------------------------- /patches/0100-package-linux-headers-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-linux-headers-install.patch -------------------------------------------------------------------------------- /patches/0100-package-nfs-utils-fixup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/patches/0100-package-nfs-utils-fixup.patch -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/scripts/ci -------------------------------------------------------------------------------- /scripts/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/scripts/download -------------------------------------------------------------------------------- /scripts/entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/scripts/entry -------------------------------------------------------------------------------- /scripts/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/scripts/package -------------------------------------------------------------------------------- /scripts/patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3s-io/k3s-root/HEAD/scripts/patch --------------------------------------------------------------------------------