├── .gitignore ├── LICENSE ├── README.md ├── init.sh ├── mkbootimg.py ├── pack-img.sh ├── packrd-gz.sh ├── rd ├── bin │ ├── arch │ ├── ash │ ├── base64 │ ├── bbconfig │ ├── busybox │ ├── cat │ ├── chgrp │ ├── chmod │ ├── chown │ ├── conspy │ ├── cp │ ├── date │ ├── dd │ ├── df │ ├── dmesg │ ├── dnsdomainname │ ├── dumpkmap │ ├── echo │ ├── ed │ ├── egrep │ ├── false │ ├── fatattr │ ├── fdflush │ ├── fgrep │ ├── fsync │ ├── getopt │ ├── grep │ ├── gunzip │ ├── gzip │ ├── hostname │ ├── ionice │ ├── iostat │ ├── ipcalc │ ├── kbd_mode │ ├── kill │ ├── link │ ├── linux32 │ ├── linux64 │ ├── ln │ ├── login │ ├── ls │ ├── lzop │ ├── makemime │ ├── mkdir │ ├── mknod │ ├── mktemp │ ├── more │ ├── mount │ ├── mountpoint │ ├── mpstat │ ├── mv │ ├── netstat │ ├── nice │ ├── pidof │ ├── ping │ ├── ping6 │ ├── pipe_progress │ ├── printenv │ ├── ps │ ├── pwd │ ├── reformime │ ├── rev │ ├── rm │ ├── rmdir │ ├── run-parts │ ├── sed │ ├── setpriv │ ├── setserial │ ├── sh │ ├── sleep │ ├── stat │ ├── stty │ ├── su │ ├── sync │ ├── tar │ ├── touch │ ├── true │ ├── umount │ ├── uname │ ├── usleep │ ├── watch │ └── zcat ├── etc │ ├── alpine-release │ ├── crontabs │ │ └── root │ ├── fstab │ ├── group │ ├── hostname │ ├── hosts │ ├── inittab │ ├── issue │ ├── logrotate.d │ │ └── acpid │ ├── modprobe.d │ │ ├── aliases.conf │ │ ├── blacklist.conf │ │ ├── i386.conf │ │ └── kms.conf │ ├── modules │ ├── motd │ ├── mtab │ ├── network │ │ └── if-up.d │ │ │ └── dad │ ├── os-release │ ├── passwd │ ├── profile │ ├── profile.d │ │ ├── color_prompt │ │ └── locale │ ├── protocols │ ├── resolv.conf │ ├── securetty │ ├── services │ ├── shadow │ ├── shells │ ├── ssl │ │ ├── cert.pem │ │ ├── certs │ │ │ └── ca-certificates.crt │ │ ├── ct_log_list.cnf │ │ ├── ct_log_list.cnf.dist │ │ ├── misc │ │ │ ├── CA.pl │ │ │ ├── tsget │ │ │ └── tsget.pl │ │ ├── openssl.cnf │ │ └── openssl.cnf.dist │ ├── sysctl.conf │ └── udhcpd.conf ├── lib │ ├── ld-musl-aarch64.so.1 │ ├── libc.musl-aarch64.so.1 │ ├── libcrypto.so.1.1 │ ├── libpopt.so.0 │ ├── libpopt.so.0.0.0 │ ├── libssl.so.1.1 │ ├── libuuid.so.1 │ ├── libuuid.so.1.3.0 │ ├── libz.so.1 │ ├── libz.so.1.2.11 │ └── sysctl.d │ │ └── 00-alpine.conf ├── sbin │ ├── acpid │ ├── adjtimex │ ├── arp │ ├── blkid │ ├── blockdev │ ├── depmod │ ├── fbsplash │ ├── fdisk │ ├── findfs │ ├── fsck │ ├── fstrim │ ├── getty │ ├── halt │ ├── hdparm │ ├── hwclock │ ├── ifconfig │ ├── ifdown │ ├── ifenslave │ ├── ifup │ ├── init │ ├── inotifyd │ ├── insmod │ ├── ip │ ├── ipaddr │ ├── iplink │ ├── ipneigh │ ├── iproute │ ├── iprule │ ├── iptunnel │ ├── klogd │ ├── ldconfig │ ├── loadkmap │ ├── logread │ ├── losetup │ ├── lsmod │ ├── mdev │ ├── mkdosfs │ ├── mkfs.vfat │ ├── mkmntdirs │ ├── mkswap │ ├── modinfo │ ├── modprobe │ ├── nameif │ ├── nologin │ ├── pivot_root │ ├── poweroff │ ├── raidautorun │ ├── reboot │ ├── rmmod │ ├── route │ ├── setconsole │ ├── slattach │ ├── swapoff │ ├── swapon │ ├── switch_root │ ├── sysctl │ ├── syslogd │ ├── tunctl │ ├── udhcpc │ ├── vconfig │ └── watchdog ├── usr │ ├── bin │ │ ├── [ │ │ ├── [[ │ │ ├── awk │ │ ├── basename │ │ ├── bc │ │ ├── beep │ │ ├── blkdiscard │ │ ├── bunzip2 │ │ ├── bzcat │ │ ├── bzip2 │ │ ├── cal │ │ ├── chvt │ │ ├── cksum │ │ ├── clear │ │ ├── cmp │ │ ├── comm │ │ ├── cpio │ │ ├── crontab │ │ ├── cryptpw │ │ ├── cut │ │ ├── dc │ │ ├── deallocvt │ │ ├── diff │ │ ├── dirname │ │ ├── dos2unix │ │ ├── du │ │ ├── dumpleases │ │ ├── eject │ │ ├── env │ │ ├── expand │ │ ├── expr │ │ ├── factor │ │ ├── fallocate │ │ ├── find │ │ ├── flock │ │ ├── fold │ │ ├── free │ │ ├── fuser │ │ ├── getconf │ │ ├── getent │ │ ├── groups │ │ ├── hd │ │ ├── head │ │ ├── hexdump │ │ ├── hostid │ │ ├── iconv │ │ ├── id │ │ ├── install │ │ ├── ipcrm │ │ ├── ipcs │ │ ├── killall │ │ ├── ldd │ │ ├── less │ │ ├── logger │ │ ├── lsof │ │ ├── lsusb │ │ ├── lzcat │ │ ├── lzma │ │ ├── lzopcat │ │ ├── magiskboot │ │ ├── md5sum │ │ ├── mesg │ │ ├── microcom │ │ ├── mkfifo │ │ ├── mkpasswd │ │ ├── nc │ │ ├── nl │ │ ├── nmeter │ │ ├── nohup │ │ ├── nproc │ │ ├── nsenter │ │ ├── nslookup │ │ ├── od │ │ ├── openvt │ │ ├── passwd │ │ ├── paste │ │ ├── pgrep │ │ ├── pkill │ │ ├── pmap │ │ ├── printf │ │ ├── pscan │ │ ├── pstree │ │ ├── pwdx │ │ ├── readlink │ │ ├── realpath │ │ ├── reboot_with_cmd │ │ ├── renice │ │ ├── reset │ │ ├── resize │ │ ├── scanelf │ │ ├── seq │ │ ├── setkeycodes │ │ ├── setsid │ │ ├── sgdisk │ │ ├── sha1sum │ │ ├── sha256sum │ │ ├── sha3sum │ │ ├── sha512sum │ │ ├── showkey │ │ ├── shred │ │ ├── shuf │ │ ├── smemcap │ │ ├── sort │ │ ├── split │ │ ├── ssl_client │ │ ├── strings │ │ ├── sum │ │ ├── tac │ │ ├── tail │ │ ├── tee │ │ ├── test │ │ ├── time │ │ ├── timeout │ │ ├── top │ │ ├── tr │ │ ├── traceroute │ │ ├── traceroute6 │ │ ├── truncate │ │ ├── tty │ │ ├── ttysize │ │ ├── udhcpc6 │ │ ├── unexpand │ │ ├── uniq │ │ ├── unix2dos │ │ ├── unlink │ │ ├── unlzma │ │ ├── unlzop │ │ ├── unshare │ │ ├── unxz │ │ ├── unzip │ │ ├── uptime │ │ ├── uudecode │ │ ├── uuencode │ │ ├── vi │ │ ├── vlock │ │ ├── volname │ │ ├── wc │ │ ├── wget │ │ ├── which │ │ ├── whoami │ │ ├── whois │ │ ├── xargs │ │ ├── xxd │ │ ├── xz │ │ ├── xzcat │ │ └── yes │ ├── lib │ │ ├── engines-1.1 │ │ │ ├── afalg.so │ │ │ ├── capi.so │ │ │ └── padlock.so │ │ ├── libcrypto.so.1.1 │ │ ├── libgcc_s.so.1 │ │ ├── libssl.so.1.1 │ │ ├── libstdc++.so.6 │ │ ├── libstdc++.so.6.0.28 │ │ ├── libtls-standalone.so.1 │ │ └── libtls-standalone.so.1.0.0 │ ├── sbin │ │ ├── add-shell │ │ ├── addgroup │ │ ├── adduser │ │ ├── arping │ │ ├── brctl │ │ ├── chpasswd │ │ ├── chroot │ │ ├── crond │ │ ├── delgroup │ │ ├── deluser │ │ ├── ether-wake │ │ ├── fbset │ │ ├── fdformat │ │ ├── killall5 │ │ ├── loadfont │ │ ├── lspci │ │ ├── nanddump │ │ ├── nandwrite │ │ ├── nbd-client │ │ ├── ntpd │ │ ├── partprobe │ │ ├── powertop │ │ ├── rdate │ │ ├── rdev │ │ ├── readahead │ │ ├── readprofile │ │ ├── remove-shell │ │ ├── rfkill │ │ ├── sendmail │ │ ├── setfont │ │ └── setlogcons │ └── share │ │ └── udhcpc │ │ └── default.script └── var │ ├── run │ └── spool │ ├── cron │ └── crontabs │ └── mail ├── reboot_with_cmd.c └── test-img.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/README.md -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/init.sh -------------------------------------------------------------------------------- /mkbootimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/mkbootimg.py -------------------------------------------------------------------------------- /pack-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/pack-img.sh -------------------------------------------------------------------------------- /packrd-gz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/packrd-gz.sh -------------------------------------------------------------------------------- /rd/bin/arch: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ash: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/base64: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/bbconfig: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/bin/busybox -------------------------------------------------------------------------------- /rd/bin/cat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/chgrp: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/chmod: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/chown: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/conspy: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/cp: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/date: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/dd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/df: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/dmesg: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/dnsdomainname: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/dumpkmap: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/echo: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ed: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/egrep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/false: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/fatattr: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/fdflush: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/fgrep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/fsync: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/getopt: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/grep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/gunzip: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/gzip: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/hostname: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ionice: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/iostat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ipcalc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/kbd_mode: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/kill: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/link: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/linux32: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/linux64: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ln: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/login: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ls: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/lzop: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/makemime: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mkdir: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mknod: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mktemp: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/more: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mount: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mountpoint: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mpstat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/mv: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/netstat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/nice: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/pidof: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ping: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ping6: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/pipe_progress: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/printenv: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/ps: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/pwd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/reformime: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/rev: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/rm: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/rmdir: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/run-parts: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/sed: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/setpriv: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/setserial: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/sh: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/sleep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/stat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/stty: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/su: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/sync: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/tar: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/touch: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/true: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/umount: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/uname: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/usleep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/watch: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/bin/zcat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/etc/alpine-release: -------------------------------------------------------------------------------- 1 | 3.12.0 2 | -------------------------------------------------------------------------------- /rd/etc/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/crontabs/root -------------------------------------------------------------------------------- /rd/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/fstab -------------------------------------------------------------------------------- /rd/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/group -------------------------------------------------------------------------------- /rd/etc/hostname: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /rd/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/hosts -------------------------------------------------------------------------------- /rd/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/inittab -------------------------------------------------------------------------------- /rd/etc/issue: -------------------------------------------------------------------------------- 1 | Welcome to Alpine Linux 3.12 2 | Kernel \r on an \m (\l) 3 | 4 | -------------------------------------------------------------------------------- /rd/etc/logrotate.d/acpid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/logrotate.d/acpid -------------------------------------------------------------------------------- /rd/etc/modprobe.d/aliases.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/modprobe.d/aliases.conf -------------------------------------------------------------------------------- /rd/etc/modprobe.d/blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/modprobe.d/blacklist.conf -------------------------------------------------------------------------------- /rd/etc/modprobe.d/i386.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/modprobe.d/i386.conf -------------------------------------------------------------------------------- /rd/etc/modprobe.d/kms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/modprobe.d/kms.conf -------------------------------------------------------------------------------- /rd/etc/modules: -------------------------------------------------------------------------------- 1 | af_packet 2 | ipv6 3 | -------------------------------------------------------------------------------- /rd/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/motd -------------------------------------------------------------------------------- /rd/etc/mtab: -------------------------------------------------------------------------------- 1 | /proc/mounts -------------------------------------------------------------------------------- /rd/etc/network/if-up.d/dad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/network/if-up.d/dad -------------------------------------------------------------------------------- /rd/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/os-release -------------------------------------------------------------------------------- /rd/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/passwd -------------------------------------------------------------------------------- /rd/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/profile -------------------------------------------------------------------------------- /rd/etc/profile.d/color_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/profile.d/color_prompt -------------------------------------------------------------------------------- /rd/etc/profile.d/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/profile.d/locale -------------------------------------------------------------------------------- /rd/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/protocols -------------------------------------------------------------------------------- /rd/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/resolv.conf -------------------------------------------------------------------------------- /rd/etc/securetty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/securetty -------------------------------------------------------------------------------- /rd/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/services -------------------------------------------------------------------------------- /rd/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/shadow -------------------------------------------------------------------------------- /rd/etc/shells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/shells -------------------------------------------------------------------------------- /rd/etc/ssl/cert.pem: -------------------------------------------------------------------------------- 1 | certs/ca-certificates.crt -------------------------------------------------------------------------------- /rd/etc/ssl/certs/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/certs/ca-certificates.crt -------------------------------------------------------------------------------- /rd/etc/ssl/ct_log_list.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/ct_log_list.cnf -------------------------------------------------------------------------------- /rd/etc/ssl/ct_log_list.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/ct_log_list.cnf.dist -------------------------------------------------------------------------------- /rd/etc/ssl/misc/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/misc/CA.pl -------------------------------------------------------------------------------- /rd/etc/ssl/misc/tsget: -------------------------------------------------------------------------------- 1 | tsget.pl -------------------------------------------------------------------------------- /rd/etc/ssl/misc/tsget.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/misc/tsget.pl -------------------------------------------------------------------------------- /rd/etc/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/openssl.cnf -------------------------------------------------------------------------------- /rd/etc/ssl/openssl.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/ssl/openssl.cnf.dist -------------------------------------------------------------------------------- /rd/etc/sysctl.conf: -------------------------------------------------------------------------------- 1 | # content of this file will override /etc/sysctl.d/* 2 | -------------------------------------------------------------------------------- /rd/etc/udhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/etc/udhcpd.conf -------------------------------------------------------------------------------- /rd/lib/ld-musl-aarch64.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/ld-musl-aarch64.so.1 -------------------------------------------------------------------------------- /rd/lib/libc.musl-aarch64.so.1: -------------------------------------------------------------------------------- 1 | ld-musl-aarch64.so.1 -------------------------------------------------------------------------------- /rd/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /rd/lib/libpopt.so.0: -------------------------------------------------------------------------------- 1 | libpopt.so.0.0.0 -------------------------------------------------------------------------------- /rd/lib/libpopt.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/libpopt.so.0.0.0 -------------------------------------------------------------------------------- /rd/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/libssl.so.1.1 -------------------------------------------------------------------------------- /rd/lib/libuuid.so.1: -------------------------------------------------------------------------------- 1 | libuuid.so.1.3.0 -------------------------------------------------------------------------------- /rd/lib/libuuid.so.1.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/libuuid.so.1.3.0 -------------------------------------------------------------------------------- /rd/lib/libz.so.1: -------------------------------------------------------------------------------- 1 | libz.so.1.2.11 -------------------------------------------------------------------------------- /rd/lib/libz.so.1.2.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/libz.so.1.2.11 -------------------------------------------------------------------------------- /rd/lib/sysctl.d/00-alpine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/lib/sysctl.d/00-alpine.conf -------------------------------------------------------------------------------- /rd/sbin/acpid: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/adjtimex: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/arp: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/blkid: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/blockdev: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/depmod: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/fbsplash: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/fdisk: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/findfs: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/fsck: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/fstrim: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/getty: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/halt: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/hdparm: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/hwclock: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ifconfig: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ifdown: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ifenslave: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ifup: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/init: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/inotifyd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/insmod: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ip: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ipaddr: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/iplink: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ipneigh: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/iproute: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/iprule: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/iptunnel: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/klogd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/ldconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/sbin/ldconfig -------------------------------------------------------------------------------- /rd/sbin/loadkmap: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/logread: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/losetup: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/lsmod: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/mdev: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/mkdosfs: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/mkfs.vfat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/mkmntdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/sbin/mkmntdirs -------------------------------------------------------------------------------- /rd/sbin/mkswap: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/modinfo: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/modprobe: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/nameif: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/nologin: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/pivot_root: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/poweroff: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/raidautorun: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/reboot: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/rmmod: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/route: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/setconsole: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/slattach: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/swapoff: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/swapon: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/switch_root: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/sysctl: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/syslogd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/tunctl: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/udhcpc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/vconfig: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/sbin/watchdog: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/[: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/[[: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/awk: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/basename: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/bc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/beep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/blkdiscard: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/bunzip2: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/bzcat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/bzip2: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/cal: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/chvt: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/cksum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/clear: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/cmp: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/comm: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/cpio: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/crontab: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/cryptpw: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/cut: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/dc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/deallocvt: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/diff: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/dirname: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/dos2unix: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/du: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/dumpleases: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/eject: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/env: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/expand: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/expr: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/factor: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/fallocate: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/find: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/flock: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/fold: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/free: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/fuser: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/getconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/getconf -------------------------------------------------------------------------------- /rd/usr/bin/getent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/getent -------------------------------------------------------------------------------- /rd/usr/bin/groups: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/hd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/head: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/hexdump: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/hostid: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/iconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/iconv -------------------------------------------------------------------------------- /rd/usr/bin/id: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/install: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/ipcrm: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/ipcs: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/killall: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/ldd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /lib/ld-musl-aarch64.so.1 --list "$@" 3 | -------------------------------------------------------------------------------- /rd/usr/bin/less: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/logger: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/lsof: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/lsusb: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/lzcat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/lzma: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/lzopcat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/magiskboot -------------------------------------------------------------------------------- /rd/usr/bin/md5sum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/mesg: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/microcom: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/mkfifo: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/mkpasswd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nl: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nmeter: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nohup: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nproc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nsenter: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/nslookup: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/od: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/openvt: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/passwd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/paste: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/pgrep: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/pkill: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/pmap: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/printf: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/pscan: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/pstree: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/pwdx: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/readlink: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/realpath: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/reboot_with_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/reboot_with_cmd -------------------------------------------------------------------------------- /rd/usr/bin/renice: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/reset: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/resize: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/scanelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/scanelf -------------------------------------------------------------------------------- /rd/usr/bin/seq: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/setkeycodes: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/setsid: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/sgdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/sgdisk -------------------------------------------------------------------------------- /rd/usr/bin/sha1sum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/sha256sum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/sha3sum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/sha512sum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/showkey: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/shred: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/shuf: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/smemcap: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/sort: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/split: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/ssl_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/bin/ssl_client -------------------------------------------------------------------------------- /rd/usr/bin/strings: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/sum: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/tac: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/tail: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/tee: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/test: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/time: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/timeout: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/top: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/tr: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/traceroute: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/traceroute6: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/truncate: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/tty: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/ttysize: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/udhcpc6: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unexpand: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/uniq: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unix2dos: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unlink: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unlzma: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unlzop: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unshare: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unxz: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/unzip: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/uptime: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/uudecode: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/uuencode: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/vi: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/vlock: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/volname: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/wc: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/wget: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/which: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/whoami: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/whois: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/xargs: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/xxd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/xz: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/xzcat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/bin/yes: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/lib/engines-1.1/afalg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/lib/engines-1.1/afalg.so -------------------------------------------------------------------------------- /rd/usr/lib/engines-1.1/capi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/lib/engines-1.1/capi.so -------------------------------------------------------------------------------- /rd/usr/lib/engines-1.1/padlock.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/lib/engines-1.1/padlock.so -------------------------------------------------------------------------------- /rd/usr/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- 1 | ../../lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /rd/usr/lib/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/lib/libgcc_s.so.1 -------------------------------------------------------------------------------- /rd/usr/lib/libssl.so.1.1: -------------------------------------------------------------------------------- 1 | ../../lib/libssl.so.1.1 -------------------------------------------------------------------------------- /rd/usr/lib/libstdc++.so.6: -------------------------------------------------------------------------------- 1 | libstdc++.so.6.0.28 -------------------------------------------------------------------------------- /rd/usr/lib/libstdc++.so.6.0.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/lib/libstdc++.so.6.0.28 -------------------------------------------------------------------------------- /rd/usr/lib/libtls-standalone.so.1: -------------------------------------------------------------------------------- 1 | libtls-standalone.so.1.0.0 -------------------------------------------------------------------------------- /rd/usr/lib/libtls-standalone.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/lib/libtls-standalone.so.1.0.0 -------------------------------------------------------------------------------- /rd/usr/sbin/add-shell: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/addgroup: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/adduser: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/arping: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/brctl: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/chpasswd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/chroot: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/crond: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/delgroup: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/deluser: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/ether-wake: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/fbset: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/fdformat: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/killall5: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/loadfont: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/lspci: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/nanddump: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/nandwrite: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/nbd-client: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/ntpd: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/partprobe: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/powertop: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/rdate: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/rdev: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/readahead: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/readprofile: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/remove-shell: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/rfkill: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/sendmail: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/setfont: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/sbin/setlogcons: -------------------------------------------------------------------------------- 1 | /bin/busybox -------------------------------------------------------------------------------- /rd/usr/share/udhcpc/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/rd/usr/share/udhcpc/default.script -------------------------------------------------------------------------------- /rd/var/run: -------------------------------------------------------------------------------- 1 | /run -------------------------------------------------------------------------------- /rd/var/spool/cron/crontabs: -------------------------------------------------------------------------------- 1 | /etc/crontabs -------------------------------------------------------------------------------- /rd/var/spool/mail: -------------------------------------------------------------------------------- 1 | /var/mail -------------------------------------------------------------------------------- /reboot_with_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/reboot_with_cmd.c -------------------------------------------------------------------------------- /test-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/kramflash/HEAD/test-img.sh --------------------------------------------------------------------------------