├── COOKBOOK ├── KEEP ├── busybox.patch ├── busybox.stage0.config ├── busybox.stage1.config ├── config.stage0 ├── config.stage1 ├── etc │ ├── fstab │ ├── group │ ├── hostname │ ├── hosts │ ├── inittab │ ├── issue │ ├── motd │ ├── passwd │ ├── profile │ ├── rc.boot │ ├── rc.shutdown │ ├── service │ │ ├── crond │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── dmesg │ │ │ └── run │ │ ├── sshd │ │ │ ├── down │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── tty1 │ │ │ └── run │ │ ├── tty2 │ │ │ └── run │ │ ├── tty3 │ │ │ └── run │ │ └── tty4 │ │ │ └── run │ └── shadow ├── extlinux.conf ├── kernel-INSTALL-i386.config ├── kernel-INSTALL-x86_64.config ├── kernel.config ├── m4-hack-gnulib.patch ├── musl.config.mak ├── openssh-hacks.h └── runsvdir-start ├── LICENSE ├── README ├── THANKS ├── deps ├── enter-chroot ├── installer ├── bin │ └── sabotage-install └── etc │ ├── fstab │ ├── inittab │ ├── motd │ └── rc.S ├── mkfile ├── pkg ├── autoconf ├── automake ├── bison ├── diffutils ├── expat ├── file ├── flex ├── gnu-grep ├── less ├── lynx ├── ncurses ├── openssh ├── patch ├── psmisc ├── python └── vim ├── sets ├── base ├── comp ├── doc ├── etc ├── i386 │ ├── base │ └── comp ├── kernel ├── x86_64 │ ├── base │ └── comp └── xorg ├── stage0 ├── binutils ├── busybox ├── finish ├── gcc3 ├── make ├── mk └── musl ├── stage1 ├── 9base ├── binutils ├── bsdtar ├── busybox ├── curl ├── e2fsprogs ├── extlinux ├── gawk ├── gcc4 ├── git ├── gmp ├── kernel ├── m4 ├── make ├── mpc ├── mpfr ├── musl ├── openssl ├── perl ├── pkg-config ├── sed ├── xz └── zlib ├── utils ├── check-sets ├── installer ├── platform ├── prepare-root ├── recipes ├── release └── utils └── xorg ├── bigreqsproto ├── compositeproto ├── damageproto ├── fixesproto ├── fontconfig ├── fontsproto ├── freetype ├── inputproto ├── kbproto ├── libfontenc ├── libice ├── libpthread-stubs ├── libsm ├── libx11 ├── libxau ├── libxaw ├── libxcb ├── libxdmcp ├── libxext ├── libxfixes ├── libxfont ├── libxft ├── libxi ├── libxkbfile ├── libxmu ├── libxpm ├── libxrender ├── libxt ├── pixman ├── randrproto ├── recordproto ├── renderproto ├── resourceproto ├── scrnsaverproto ├── st ├── twm ├── util-macros ├── videoproto ├── xauth ├── xcb-proto ├── xclock ├── xcmiscproto ├── xextproto ├── xineramaproto ├── xinit ├── xkbcomp ├── xkeyboard-config ├── xlogo ├── xorg-server ├── xproto ├── xterm └── xtrans /COOKBOOK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/COOKBOOK -------------------------------------------------------------------------------- /KEEP/busybox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/busybox.patch -------------------------------------------------------------------------------- /KEEP/busybox.stage0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/busybox.stage0.config -------------------------------------------------------------------------------- /KEEP/busybox.stage1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/busybox.stage1.config -------------------------------------------------------------------------------- /KEEP/config.stage0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/config.stage0 -------------------------------------------------------------------------------- /KEEP/config.stage1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/config.stage1 -------------------------------------------------------------------------------- /KEEP/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/fstab -------------------------------------------------------------------------------- /KEEP/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/group -------------------------------------------------------------------------------- /KEEP/etc/hostname: -------------------------------------------------------------------------------- 1 | sabotage 2 | -------------------------------------------------------------------------------- /KEEP/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/hosts -------------------------------------------------------------------------------- /KEEP/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/inittab -------------------------------------------------------------------------------- /KEEP/etc/issue: -------------------------------------------------------------------------------- 1 | sabotage \n (\s \m \r) (\l) 2 | 3 | -------------------------------------------------------------------------------- /KEEP/etc/motd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KEEP/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/passwd -------------------------------------------------------------------------------- /KEEP/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/profile -------------------------------------------------------------------------------- /KEEP/etc/rc.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/rc.boot -------------------------------------------------------------------------------- /KEEP/etc/rc.shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leahneukirchen/sabotage/HEAD/KEEP/etc/rc.shutdown -------------------------------------------------------------------------------- /KEEP/etc/service/crond/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec svlogd -tt /var/log/crond 3 | -------------------------------------------------------------------------------- /KEEP/etc/service/crond/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec crond -f -d8 3 | -------------------------------------------------------------------------------- /KEEP/etc/service/dmesg/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec svlogd -tt /var/log/dmesg