├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── image.yml │ ├── testcases.yml │ └── verify.yml ├── .gitignore ├── .gitmodules ├── AUTHORS ├── CONTRIBUTING.md ├── Documentation ├── BootInitramfs.md ├── BootParameters.md ├── Configuration.md ├── Contributing.md ├── DeviceSpec.md ├── FAQ.md ├── GuessConfiguration.md ├── HowInitramfsWorks.md ├── InitramfsServices.md ├── MakeInitrdArguments.md ├── NewFeature.md ├── README.md ├── Root9p.md ├── UeventDetails.md ├── logo-big.png ├── logo-small.png ├── manpages │ ├── depinfo.1.md │ ├── initrd-diff.1.md │ ├── initrd-ls.1.md │ ├── initrd-put.1.md │ ├── initrd-scanmod.1.md │ └── make-initrd.1.md └── presentation │ └── 2021 │ └── theses.ru.utf8.md ├── LICENSE ├── Makefile.in ├── README.md ├── aclocal.m4 ├── autogen.sh ├── conf ├── initrd.mk └── initrd.mk.d │ ├── debug.mk.example │ ├── guestfs.mk.example │ ├── rescue.mk.example │ └── uki.mk.example ├── config.guess ├── config.h.in ├── config.sub ├── configure.ac ├── contrib └── bash-completion │ ├── depinfo │ ├── initrd-extract │ ├── initrd-ls │ ├── initrd-scanmod │ └── make-initrd ├── external └── busybox │ └── config ├── features ├── README.md ├── add-modules │ ├── README.md │ ├── bin │ │ └── put-modules │ ├── config.mk │ ├── kmodule.deps.d │ │ ├── add-deps-ext4 │ │ ├── add-deps-f2fs │ │ └── add-deps-libcrc32c │ └── rules.mk ├── add-udev-rules │ ├── README.md │ ├── bin │ │ ├── find-udev-rule-externals │ │ └── put-rules │ ├── config.mk │ ├── guess │ │ └── common │ ├── rules.d │ │ ├── 50-udev-default.rules │ │ ├── 60-persistent-input.rules │ │ ├── 60-persistent-storage.rules │ │ └── 80-drivers.rules │ ├── rules.mk │ └── tests │ │ ├── ts0001-nothing │ │ ├── data.rules │ │ ├── expect │ │ └── run │ │ ├── ts0002-RUN-without-builtins │ │ ├── bin │ │ │ ├── blkid │ │ │ ├── kmod │ │ │ └── xcdrom_id │ │ ├── data.rules │ │ ├── expect.in │ │ └── run │ │ ├── ts0003-RUN-with-builtins │ │ ├── bin │ │ │ ├── blkid │ │ │ ├── kmod │ │ │ ├── xcdrom_id │ │ │ └── xudevadm │ │ ├── data.rules │ │ ├── expect.in │ │ └── run │ │ └── ts0004-PROGRAM-with-builtins │ │ ├── bin │ │ ├── blkid │ │ ├── kmod │ │ ├── xcdrom_id │ │ └── xudevadm │ │ ├── data.rules │ │ ├── expect.in │ │ └── run ├── bcache │ ├── README.md │ ├── config.mk │ ├── guess │ │ └── device │ └── rules.mk ├── bootconfig │ ├── README.md │ ├── bin │ │ └── add-bootconfig │ ├── config.mk │ └── rules.mk ├── btrfs │ ├── README.md │ ├── config.mk │ ├── guess │ │ └── fstype │ ├── rules.d │ │ └── 99-initrd-btrfs.rules │ └── rules.mk ├── cleanup │ ├── README.md │ ├── config.mk │ ├── guess │ │ └── common │ └── rules.mk ├── compress │ ├── README.md │ ├── bin │ │ └── compress-image │ ├── config.mk │ ├── guess │ │ └── common │ └── rules.mk ├── debug-tools │ ├── README.md │ ├── config.mk │ └── rules.mk ├── depmod-image │ ├── README.md │ └── rules.mk ├── devmapper │ ├── README.md │ ├── config.mk │ ├── guess │ │ └── device │ ├── rules.d │ │ └── 11-initrd-dm.rules │ └── rules.mk ├── dialog │ ├── README.md │ ├── config.mk │ ├── data │ │ └── bin │ │ │ └── dialog-sh-functions │ └── rules.mk ├── dropbear │ ├── config.mk │ ├── data │ │ ├── etc │ │ │ ├── dropbear │ │ │ │ └── dropbear.conf │ │ │ └── rc.d │ │ │ │ └── init.d │ │ │ │ └── dropbear │ │ └── var │ │ │ └── run │ │ │ └── dropbear.pid │ └── rules.mk ├── fsck │ ├── README.md │ ├── bin │ │ └── find-files │ ├── config.mk │ ├── data │ │ ├── etc │ │ │ └── initrd │ │ │ │ └── cmdline.d │ │ │ │ └── fsck │ │ └── lib │ │ │ └── uevent │ │ │ └── handlers │ │ │ └── 040-mountdev │ └── rules.mk ├── gpg │ ├── README.md │ ├── config.mk │ └── rules.mk ├── gpu-drm │ ├── README.md │ ├── bin │ │ └── get-modules │ ├── config.mk │ └── rules.mk ├── guess-nvme │ ├── README.md │ └── guess │ │ └── device ├── guestfs │ ├── README.md │ ├── config.mk │ ├── data │ │ └── etc │ │ │ ├── initrd │ │ │ └── cmdline.d │ │ │ │ └── guestfs │ │ │ └── rc.d │ │ │ └── init.d │ │ │ └── guestfsd │ ├── rules.d │ │ └── 99-guestfs-serial.rules │ └── rules.mk ├── iscsi │ ├── README.md │ ├── config.mk │ ├── data │ │ └── etc │ │ │ ├── initrd │ │ │ └── cmdline.d │ │ │ │ └── iscsi │ │ │ └── rc.d │ │ │ └── init.d │ │ │ └── iscsi │ └── rules.mk ├── kickstart │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── bin │ │ │ ├── kickstart │ │ │ ├── kickstart-sh-installation │ │ │ ├── kickstart-sh-platform │ │ │ ├── kickstart-sh-postinstall │ │ │ ├── kickstart-sh-storage │ │ │ ├── kickstart-sh-storage-btrfs │ │ │ ├── kickstart-sh-storage-lvm │ │ │ ├── kickstart-sh-storage-raid │ │ │ └── kickstart-sh-storage-zfs │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── kickstart │ │ │ └── rc.d │ │ │ │ └── init.d │ │ │ │ ├── kickstart │ │ │ │ └── kickstart-prepare │ │ ├── lib │ │ │ └── pipeline │ │ │ │ └── kickstart │ │ ├── mnt │ │ │ └── sysimage │ │ └── root │ │ │ └── .gitignore │ └── rules.mk ├── lazy-cleanup │ └── rules.mk ├── lkrg │ ├── README.md │ ├── config.mk │ ├── data │ │ └── etc │ │ │ ├── initrd │ │ │ └── cmdline.d │ │ │ │ └── lkrg │ │ │ └── rc.d │ │ │ └── init.d │ │ │ └── lkrg │ └── rules.mk ├── locales │ ├── README.md │ ├── bin │ │ ├── put-l10n │ │ └── put-locale │ ├── config.mk │ ├── guess │ │ └── common │ └── rules.mk ├── luks-unl0kr │ ├── README.md │ ├── config.mk │ └── rules.mk ├── luks │ ├── README.md │ ├── bin │ │ └── get-data │ ├── config.mk │ ├── data │ │ ├── bin │ │ │ └── crypttab-sh-functions │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── luks │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 99-initrd-luks.rules │ │ └── lib │ │ │ ├── initrd │ │ │ └── post │ │ │ │ └── cmdline │ │ │ │ └── luks │ │ │ └── uevent │ │ │ ├── filters │ │ │ ├── luks │ │ │ └── lukskeys │ │ │ └── handlers │ │ │ └── 085-luks │ ├── guess │ │ └── device │ └── rules.mk ├── lvm │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── etc │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 99-initrd-lvm.rules │ │ └── lib │ │ │ └── uevent │ │ │ ├── filters │ │ │ └── lvm │ │ │ └── handlers │ │ │ └── 060-lvm │ ├── guess │ │ └── device │ └── rules.mk ├── mdadm │ ├── README.md │ ├── bin │ │ └── generate-udev-rules │ ├── config.mk │ ├── data │ │ ├── .initrd │ │ │ └── uevent │ │ │ │ └── queues │ │ │ │ └── md-raid-member │ │ │ │ └── .tmp │ │ │ │ └── .gitignore │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── mdadm │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 64-md-raid-member.rules │ │ └── lib │ │ │ ├── initrd │ │ │ └── pre │ │ │ │ └── udev │ │ │ │ └── mdadm │ │ │ └── uevent │ │ │ ├── filters │ │ │ └── md-raid-member │ │ │ └── handlers │ │ │ └── md-raid-member │ │ │ └── 100-timeout │ ├── guess │ │ └── device │ ├── rules.d │ │ └── 63-md-raid-arrays.rules │ ├── rules.mk │ └── tests │ │ └── ts0001-guess-ignore-multipath │ │ ├── expect │ │ ├── rootfs.tar.xz │ │ └── run ├── modules-blockdev │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-crypto-user-api │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-filesystem │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-multiple-devices │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-network │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-nfs │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-sbc │ ├── README.md │ ├── config.mk │ └── rules.mk ├── modules-virtio │ ├── README.md │ ├── config.mk │ └── rules.mk ├── multipath │ ├── README.md │ ├── config.mk │ ├── data │ │ └── etc │ │ │ └── rc.d │ │ │ └── init.d │ │ │ └── multipathd │ ├── guess │ │ └── device │ └── rules.mk ├── network │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── .initrd │ │ │ ├── online │ │ │ │ └── .gitignore │ │ │ └── uevent │ │ │ │ └── queues │ │ │ │ └── network │ │ │ │ └── .tmp │ │ │ │ └── .gitignore │ │ ├── bin │ │ │ ├── network-cmdline-sh-functions │ │ │ └── network-sh-functions │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── network │ │ │ ├── network │ │ │ │ └── ifaces │ │ │ │ │ └── lo │ │ │ │ │ └── ipv4address │ │ │ ├── rc.d │ │ │ │ └── init.d │ │ │ │ │ └── network-up │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 81-network.rules │ │ └── lib │ │ │ ├── initrd │ │ │ └── post │ │ │ │ └── cmdline │ │ │ │ └── network │ │ │ ├── network │ │ │ ├── addr │ │ │ ├── config │ │ │ ├── hostname │ │ │ ├── link │ │ │ ├── resolvconf │ │ │ ├── route │ │ │ ├── udhcpc4.script │ │ │ └── udhcpc6.script │ │ │ └── uevent │ │ │ ├── filters │ │ │ └── network │ │ │ └── handlers │ │ │ └── network │ │ │ ├── 100-dhcp │ │ │ └── 400-network │ ├── rules.mk │ └── tests │ │ ├── ts0001-cmdline-ifname │ │ ├── expect │ │ └── run │ │ ├── ts0001-cmdline-ip │ │ ├── expect │ │ └── run │ │ └── ts0001-cmdline-route │ │ ├── expect │ │ └── run ├── nfsroot │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── nfsroot │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 99-nfsroot.rules │ │ └── lib │ │ │ └── uevent │ │ │ ├── filters │ │ │ └── nfsroot │ │ │ └── handlers │ │ │ └── 040-nfsroot │ └── rules.mk ├── overlayfs │ ├── guess │ │ └── fstype │ └── tests │ │ └── ts0001-guess-overlayfs │ │ ├── expect │ │ ├── rootfs.tar.xz │ │ └── run ├── pipeline │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── .initrd │ │ │ └── uevent │ │ │ │ └── queues │ │ │ │ └── pipeline │ │ │ │ └── .tmp │ │ │ │ └── .gitignore │ │ ├── bin │ │ │ └── pipeline-sh-functions │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── pipeline │ │ │ ├── rc.d │ │ │ │ └── init.d │ │ │ │ │ └── pipeline │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 50-pipeline-waitdev.rules │ │ └── lib │ │ │ ├── initrd │ │ │ └── post │ │ │ │ └── cmdline │ │ │ │ └── pipeline │ │ │ ├── pipeline │ │ │ ├── getimage │ │ │ ├── mountfs │ │ │ ├── overlayfs │ │ │ ├── ping │ │ │ ├── rootfs │ │ │ ├── wait-resume │ │ │ └── waitdev │ │ │ └── uevent │ │ │ ├── filters │ │ │ └── pipeline-waitdev │ │ │ └── handlers │ │ │ └── pipeline │ │ │ └── 500-pipeline │ └── rules.mk ├── plymouth │ ├── README.md │ ├── bin │ │ ├── get-modules │ │ └── get-theme-files │ ├── config.mk │ ├── data │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── plymouth │ │ │ └── rc.d │ │ │ │ └── init.d │ │ │ │ └── plymouth │ │ └── lib │ │ │ └── shell │ │ │ └── plymouth-hide │ ├── rules.d │ │ ├── 70-uaccess.rules │ │ ├── 71-seat.rules │ │ └── 73-seat-late.rules │ └── rules.mk ├── qemu │ ├── README.md │ ├── config.mk │ └── rules.mk ├── rdshell │ ├── README.md │ ├── bin │ │ └── add-login │ ├── config.mk │ └── rules.mk ├── rootfs │ ├── bin │ │ └── create-fstab │ ├── config.mk │ ├── guess │ │ └── fstype │ ├── rules.mk │ └── tests │ │ └── ts0001-guess-rootfs │ │ ├── expect │ │ ├── rootfs.tar.xz │ │ └── run ├── runtime-compressed-fs │ ├── README.md │ ├── bin │ │ └── pack-compressed-fs │ ├── config.mk │ ├── pack.mk │ └── rules.mk ├── runtime │ ├── README.md │ ├── data │ │ ├── bin │ │ │ ├── initrd-sh-functions │ │ │ ├── rdshell │ │ │ ├── readlink-e │ │ │ ├── state-sh-functions │ │ │ ├── udev-run │ │ │ └── uevent-sh-functions │ │ ├── etc │ │ │ ├── init.d │ │ │ ├── initrd │ │ │ │ ├── cmdline.d │ │ │ │ │ └── base │ │ │ │ └── method │ │ │ ├── profile │ │ │ ├── rc.d │ │ │ │ ├── init.d │ │ │ │ │ ├── cmdline │ │ │ │ │ ├── fstab │ │ │ │ │ ├── functions │ │ │ │ │ ├── killall │ │ │ │ │ ├── modules │ │ │ │ │ ├── mountfs │ │ │ │ │ ├── outformat │ │ │ │ │ ├── rootdelay │ │ │ │ │ ├── runinit │ │ │ │ │ ├── sysctl │ │ │ │ │ ├── template │ │ │ │ │ ├── udev │ │ │ │ │ ├── uevent │ │ │ │ │ └── uevent-mounts │ │ │ │ ├── rc │ │ │ │ ├── rc.sysexec │ │ │ │ ├── rc.sysinit │ │ │ │ ├── rc0.d │ │ │ │ │ └── .gitignore │ │ │ │ ├── rc1.d │ │ │ │ │ └── .gitignore │ │ │ │ ├── rc2.d │ │ │ │ │ └── .gitignore │ │ │ │ ├── rc3.d │ │ │ │ │ └── .gitignore │ │ │ │ ├── rc4.d │ │ │ │ │ └── .gitignore │ │ │ │ ├── rc5.d │ │ │ │ │ └── .gitignore │ │ │ │ └── rc6.d │ │ │ │ │ └── .gitignore │ │ │ ├── sysconfig │ │ │ │ └── init │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ ├── 00-debug.rules │ │ │ │ ├── 80-network.rules │ │ │ │ ├── 99-mountdev.rules │ │ │ │ └── 99-resume.rules │ │ ├── init │ │ ├── lib │ │ │ ├── initrd │ │ │ │ ├── post │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── fstab │ │ │ │ │ │ └── mountsrc │ │ │ │ ├── pre │ │ │ │ │ └── .gitignore │ │ │ │ └── udevd │ │ │ ├── shell │ │ │ │ └── rescue-mods │ │ │ └── uevent │ │ │ │ ├── each │ │ │ │ ├── post │ │ │ │ │ └── .gitignore │ │ │ │ └── pre │ │ │ │ │ └── .gitignore │ │ │ │ ├── filters │ │ │ │ ├── debug │ │ │ │ ├── mountdev │ │ │ │ └── resume │ │ │ │ └── handlers │ │ │ │ ├── 010-resume │ │ │ │ ├── 080-mountdev │ │ │ │ └── mount │ │ │ │ └── 900-localdev │ │ └── sbin │ │ │ ├── rootdelayd │ │ │ └── ueventd-queue │ ├── rules.mk │ └── src │ │ ├── Makefile.mk │ │ ├── chrooted │ │ ├── Makefile.mk │ │ └── chrooted.c │ │ ├── environ │ │ ├── Makefile.mk │ │ └── environ.c │ │ ├── halt │ │ ├── Makefile.mk │ │ ├── halt.c │ │ ├── hddown.c │ │ ├── ifdown.c │ │ ├── reboot.h │ │ └── utmp.c │ │ ├── libinitramfs │ │ ├── Makefile.mk │ │ ├── console.c │ │ ├── logging.c │ │ ├── memory.c │ │ └── rd │ │ │ ├── console.h │ │ │ ├── list.h │ │ │ ├── logging.h │ │ │ └── memory.h │ │ ├── nfsmount │ │ ├── Makefile.mk │ │ ├── README.locking │ │ ├── dummypmap.c │ │ ├── dummypmap.h │ │ ├── main.c │ │ ├── mount.c │ │ ├── nfsmount.h │ │ ├── portmap.c │ │ ├── sunrpc.c │ │ └── sunrpc.h │ │ ├── resume │ │ ├── Makefile.mk │ │ ├── getarg.c │ │ ├── name_to_dev.c │ │ ├── name_to_dev.h │ │ ├── resume.c │ │ ├── resume.h │ │ └── resumelib.c │ │ ├── runas │ │ ├── Makefile.mk │ │ └── runas.c │ │ ├── sysexec │ │ ├── Makefile.mk │ │ └── sysexec.c │ │ ├── timestamp │ │ ├── Makefile.mk │ │ └── timestamp.c │ │ ├── ueventd-mounts │ │ ├── Makefile.mk │ │ └── ueventd-mounts.c │ │ └── ueventd │ │ ├── Makefile.mk │ │ ├── path.c │ │ ├── process.c │ │ ├── queue-processor.c │ │ ├── ueventd.c │ │ └── ueventd.h ├── scsi-mode │ └── guess │ │ └── device ├── smart-card │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── bin │ │ │ ├── pkcs11-tool-wrapper │ │ │ └── smart-card │ │ └── etc │ │ │ └── rc.d │ │ │ └── init.d │ │ │ └── pcscd │ └── rules.mk ├── sshfsroot │ ├── README.md │ ├── bin │ │ └── get-dirs │ ├── config.mk │ ├── data │ │ ├── bin │ │ │ ├── ask-pass-common │ │ │ └── sshfs-client │ │ ├── etc │ │ │ ├── initrd │ │ │ │ └── cmdline.d │ │ │ │ │ └── sshfsroot │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 99-sshfsroot.rules │ │ └── lib │ │ │ └── uevent │ │ │ ├── filters │ │ │ └── sshfsroot │ │ │ └── handlers │ │ │ └── 040-sshfsroot │ ├── rules.mk │ └── src │ │ ├── Makefile.mk │ │ └── ask-pass │ │ ├── Makefile.mk │ │ └── ask-pass.c ├── sysfs-dma │ └── guess │ │ └── device ├── sysfs-virtio-pci │ └── guess │ │ └── device ├── syslog │ ├── README.md │ ├── config.mk │ ├── data │ │ ├── etc │ │ │ ├── rc.d │ │ │ │ └── init.d │ │ │ │ │ ├── klogd │ │ │ │ │ └── syslogd │ │ │ ├── syslog.conf │ │ │ └── syslog.d │ │ │ │ └── .gitignore │ │ └── var │ │ │ ├── log │ │ │ └── messages │ │ │ └── run │ │ │ ├── klogd.pid │ │ │ └── syslogd.pid │ └── rules.mk ├── system-glibc │ ├── README.md │ ├── bin │ │ ├── system-glibc-libgcc_s │ │ ├── system-glibc-libnss │ │ ├── system-glibc-network │ │ └── system-glibc-pwgr │ ├── config.mk │ └── rules.mk ├── telnetd │ ├── config.mk │ ├── data │ │ ├── bin │ │ │ └── telnetd-shell │ │ ├── etc │ │ │ ├── rc.d │ │ │ │ └── init.d │ │ │ │ │ └── telnetd │ │ │ └── telnetd │ │ │ │ ├── banner │ │ │ │ └── telnetd.conf │ │ └── var │ │ │ └── run │ │ │ └── telnetd.pid │ └── rules.mk ├── ucode │ ├── README.md │ ├── bin │ │ └── add-ucode │ ├── config.mk │ └── rules.mk ├── uki │ ├── README.md │ ├── bin │ │ ├── find-vmlinuz │ │ └── pack-uki │ ├── config.mk │ └── rules.mk ├── usb-storage │ └── guess │ │ └── device ├── usb │ ├── README.md │ ├── config.mk │ └── rules.mk └── zfs │ ├── README.md │ ├── bin │ └── get-data │ ├── config.mk │ ├── data │ ├── etc │ │ ├── initrd │ │ │ └── cmdline.d │ │ │ │ └── zfs │ │ └── rc.d │ │ │ └── init.d │ │ │ └── uevent-zfs │ ├── lib │ │ └── initrd │ │ │ └── post │ │ │ ├── cmdline │ │ │ └── zfs │ │ │ └── fstab │ │ │ └── zfs │ └── sbin │ │ └── ueventd-zfs │ ├── guess │ └── fstype │ └── rules.mk ├── guess ├── bootconfig │ ├── README.md │ ├── action │ └── rules.mk ├── common │ ├── README.md │ ├── action │ └── rules.mk ├── device-tree │ ├── README.md │ ├── action │ ├── config.mk │ └── rules.mk ├── device │ ├── README.md │ ├── action │ └── rules.mk ├── keyboard │ ├── README.md │ ├── action │ ├── config.mk │ └── rules.mk ├── lkrg │ ├── README.md │ ├── action │ └── rules.mk ├── net │ ├── README.md │ ├── action │ ├── config.mk │ └── rules.mk ├── qemu │ ├── README.md │ ├── action │ └── rules.mk ├── rdshell │ ├── README.md │ ├── action │ └── rules.mk ├── resume │ ├── README.md │ ├── action │ └── rules.mk ├── root │ ├── README.md │ ├── action │ ├── config.mk │ └── rules.mk ├── smart-card │ ├── README.md │ ├── action │ ├── config.mk │ └── rules.mk ├── touchscreen │ ├── README.md │ ├── action │ └── rules.mk └── ucode │ ├── README.md │ ├── action │ └── rules.mk ├── include └── temp_failure_retry.h ├── install-sh ├── mk ├── config.mk.in ├── functions.mk.in ├── genimage.mk.in ├── guess.mk.in ├── main.mk.in ├── packimage.mk.in ├── show-feature-info.mk.in └── tests │ ├── ts0001-word-position │ ├── expect │ └── run │ ├── ts0002-set-sysconfig │ ├── expect │ ├── print-vars │ └── run │ ├── ts0003-include-features-once │ ├── aaa │ │ └── rules.mk │ ├── expect │ └── run │ ├── ts0004-include-features-once │ ├── aaa │ │ └── rules.mk │ ├── expect │ └── run │ ├── ts0005-include-feature │ ├── aaa │ │ └── rules.mk │ ├── expect │ └── run │ ├── ts0006-include-features-once │ ├── aaa │ │ └── rules.mk │ ├── bbb │ │ └── rules.mk │ ├── ccc │ │ └── rules.mk │ ├── expect │ └── run │ ├── ts0007-if-command-ret-code │ ├── expect │ └── run │ ├── ts0009-wildcard-features │ ├── aaa │ │ ├── config.mk │ │ └── rules.mk │ ├── bbb │ │ └── rules.mk │ ├── ccc │ │ ├── config.mk │ │ └── rules.mk │ ├── expect │ └── run │ └── ts0010-assign-shell-once │ ├── expect │ └── run ├── testing ├── expect-password ├── generate-metrics ├── ks-altlinux-initrd.cfg ├── ks-done.cfg ├── ks-fedora-initrd.cfg ├── ks-gentoo-initrd.cfg ├── ks-gentoo_musl-initrd.cfg ├── ks-sysimage.cfg ├── ks-ubuntu-initrd.cfg ├── packages-altlinux ├── packages-fedora ├── packages-gentoo ├── packages-gentoo_musl ├── packages-ubuntu ├── sh-functions ├── test-root-btrfs-subvol.cfg ├── test-root-efi-partition.cfg ├── test-root-efi-reqpartition.cfg ├── test-root-f2fs-partition.cfg ├── test-root-initramfs-on-erofs.cfg ├── test-root-initramfs-on-squashfs.cfg ├── test-root-luks+crypttab+noparam.cfg ├── test-root-luks+lukskey-noparam.cfg ├── test-root-luks+lukskey-plain.cfg ├── test-root-luks+lukskey-raw.cfg ├── test-root-luks-over-lvm.cfg ├── test-root-luks-over-raid1.cfg ├── test-root-luks.cfg ├── test-root-lvm+luks.cfg ├── test-root-lvm.cfg ├── test-root-partition+usr.cfg ├── test-root-partition.cfg ├── test-root-pipeline.cfg ├── test-root-raid1+raid5.cfg ├── test-root-raid1-degraded.cfg ├── test-root-raid1.cfg ├── test-root-raid5.cfg ├── test-root-sdcard.cfg ├── test-root-xfs-partition.cfg ├── test-root-zfs-partition.cfg ├── testing-altlinux ├── testing-fedora ├── testing-gentoo ├── testing-gentoo_musl ├── testing-ubuntu └── tests │ ├── put-file-sh-functions │ ├── run │ ├── ts0001-kernel-compare │ ├── expect │ └── run │ ├── ts0010-put-file │ ├── expect │ ├── run │ └── src │ │ ├── Makefile │ │ ├── foo.c │ │ ├── libfoo.c │ │ └── libfoo.h │ ├── ts0011-put-file │ ├── expect │ └── run │ ├── ts0012-put-file │ ├── expect │ ├── from │ │ ├── bin │ │ └── usr │ │ │ └── bin │ │ │ └── foo │ └── run │ ├── ts0013-put-file │ ├── expect │ ├── from │ │ ├── bin │ │ ├── sbin │ │ └── usr │ │ │ ├── bin │ │ │ └── bar │ │ │ └── sbin │ │ │ └── foo │ └── run │ ├── ts0014-put-file │ ├── expect │ └── run │ ├── ts0015-put-file │ ├── expect │ └── run │ ├── ts0016-sort-services │ ├── data │ ├── expect │ └── run │ ├── ts0017-sort-services │ ├── data │ ├── expect │ └── run │ ├── ts0018-sort-services │ ├── data │ ├── expect │ └── run │ ├── ts0019-sort-services │ ├── data │ ├── expect │ └── run │ ├── ts0020-sort-services │ ├── data │ ├── expect │ └── run │ ├── ts0021-sort-services │ ├── data │ ├── expect │ └── run │ ├── ts0022-sort-services │ ├── data00-cmdline │ ├── data01-fstab │ ├── data02-killall │ ├── data03-modules │ ├── data04-mountfs │ ├── data05-mountsrc │ ├── data06-plymouth │ ├── data07-poll │ ├── data08-runinit │ ├── data09-shell │ ├── data10-sysctl │ ├── data11-udev │ ├── data12-uevent │ ├── expect │ └── run │ ├── ts0023-sort-services │ ├── data00-cmdline │ ├── data01-fstab │ ├── data02-killall │ ├── data03-modules │ ├── data04-mountfs │ ├── data05-mountsrc │ ├── data06-plymouth │ ├── data07-poll │ ├── data08-runinit │ ├── data09-shell │ ├── data10-sysctl │ ├── data11-udev │ ├── data12-uevent │ ├── expect │ └── run │ ├── ts0024-sort-services │ ├── data01 │ ├── data02 │ ├── data03 │ ├── data04 │ ├── expect │ └── run │ ├── ts0025-sort-services │ ├── data01 │ ├── data02 │ ├── data03 │ ├── data04 │ ├── expect │ └── run │ ├── ts0026-sort-services │ ├── data01 │ ├── data02 │ ├── data03 │ ├── data04 │ ├── expect │ └── run │ ├── ts0027-sort-services │ ├── data01 │ ├── expect │ └── run │ ├── ts0028-sort-services │ ├── data01 │ ├── expect │ └── run │ ├── ts0029-sort-services │ ├── data01 │ ├── data02 │ ├── expect │ └── run │ ├── ts0030-sort-services │ ├── data01 │ ├── data02 │ ├── data03 │ ├── data04 │ ├── data05 │ ├── expect │ └── run │ ├── ts0031-sort-services │ ├── expect │ ├── rc.d │ │ ├── data00-cmdline │ │ ├── data01-fstab │ │ ├── data02-killall │ │ ├── data03-modules │ │ ├── data04-mountfs │ │ ├── data05-mountsrc │ │ ├── data06-plymouth │ │ ├── data07-poll │ │ ├── data08-runinit │ │ ├── data09-shell │ │ ├── data10-sysctl │ │ ├── data11-udev │ │ └── data12-uevent │ └── run │ └── ts0032-sort-services │ ├── expect │ ├── rc.d │ ├── data00-cmdline │ ├── data01-fstab │ ├── data02-killall │ ├── data03-modules │ ├── data04-mountfs │ ├── data05-mountsrc │ ├── data06-plymouth │ ├── data07-poll │ ├── data08-runinit │ ├── data09-shell │ ├── data10-sysctl │ ├── data11-udev │ ├── data12-uevent │ └── data13-lkrg │ └── run ├── tools ├── bug-report ├── create-rootfs ├── find-terminfo ├── gen-ld-so-conf ├── get-ldconfig ├── get-libc-dir ├── guess-config ├── guess-functions ├── initrd-release ├── kernel-compare ├── kernel-version ├── msg-timestamp ├── pack-image ├── put-file ├── put-tree ├── sh-functions ├── show-install-info ├── sort-services └── wrapper-functions └── utils ├── depinfo ├── Makefile.mk └── kmod-depinfo.c ├── initrd-common.c ├── initrd-common.h ├── initrd-cpio.c ├── initrd-cpio.h ├── initrd-decompress-bzip2.c ├── initrd-decompress-gzip.c ├── initrd-decompress-lzma.c ├── initrd-decompress-zstd.c ├── initrd-decompress.c ├── initrd-decompress.h ├── initrd-diff ├── Makefile.mk └── initrd-diff.in ├── initrd-extract ├── Makefile.mk ├── initrd-extract.c └── tests │ └── ts0001 │ ├── data.cpio │ ├── empty.cpio │ ├── expect │ └── run ├── initrd-ls ├── Makefile.mk ├── initrd-ls-format.c ├── initrd-ls.c ├── initrd-ls.h └── tests │ ├── ts0001 │ ├── empty.cpio │ ├── expect │ └── run │ ├── ts0002 │ ├── data.cpio │ ├── expect │ └── run │ ├── ts0003 │ ├── data.cpio │ ├── expect │ └── run │ ├── ts0004 │ ├── data.cpio.gz │ ├── expect │ └── run │ ├── ts0005 │ ├── data.img │ ├── expect │ └── run │ ├── ts0006 │ ├── data1.cpio │ ├── data2.cpio │ ├── data3.cpio │ ├── expect │ └── run │ ├── ts0007 │ ├── data.img │ ├── expect │ └── run │ ├── ts0008 │ ├── data.img │ ├── expect │ └── run │ ├── ts0010 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0011 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0012 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0013 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0014 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0015 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0016 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0017 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0018 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0019 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0020 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0021 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0022 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0023 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0024 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0025 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0026 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0027 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0028 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0029 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0030 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0031 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0032 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0033 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0034 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0035 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0036 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0037 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0038 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0039 │ ├── data.img │ ├── expect │ ├── info │ └── run │ ├── ts0040 │ ├── data.img │ ├── expect │ ├── info │ └── run │ └── ts0041 │ ├── data.img │ ├── expect │ ├── info │ └── run ├── initrd-parse.c ├── initrd-parse.h ├── initrd-put ├── Makefile.mk ├── elf_dlopen.c ├── elf_dlopen.h ├── enqueue-library.c ├── enqueue-shebang.c ├── enqueue.h ├── initrd-put.c ├── memory.c ├── memory.h ├── queue.c ├── queue.h ├── tree.c └── tree.h ├── initrd-python.sh ├── initrd-scanmod ├── Makefile.mk ├── initrd-scanmod-common.c ├── initrd-scanmod-file.c ├── initrd-scanmod-rules.c ├── initrd-scanmod-walk.c ├── initrd-scanmod.c └── initrd-scanmod.h ├── make-initrd ├── Makefile.mk └── make-initrd.in ├── make-wiki.sh ├── mi-bug-report ├── mkinitrd-make-initrd ├── Makefile.mk └── mkinitrd-make-initrd.in └── udev-rules ├── Makefile.mk ├── list.h ├── list_sort.c ├── tests ├── ts0001-everything-ok │ ├── expect │ ├── foo.rules │ └── run ├── ts0002-Wdup-match │ ├── expect │ ├── foo.rules │ └── run ├── ts0003-Wconflict-match │ ├── expect │ ├── foo.rules │ └── run ├── ts0004-Wmissing-label │ ├── expect │ ├── foo.rules │ └── run ├── ts0005-Wincomplete-rule │ ├── expect │ ├── foo.rules │ └── run ├── ts0006-Wconflict-match │ ├── expect │ ├── foo.rules │ └── run ├── ts0007-Wmulti-label │ ├── expect │ ├── foo.rules │ └── run └── ts0008-multi-PROGRAM-RESULT │ ├── expect │ ├── foo.rules │ └── run ├── udev-goto-label.c ├── udev-rules-parser.y ├── udev-rules-scanner.l ├── udev-rules.c ├── udev-rules.h ├── udev-string.c └── udev-string.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: legionus 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/.github/workflows/image.yml -------------------------------------------------------------------------------- /.github/workflows/testcases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/.github/workflows/testcases.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Documentation/Contributing.md -------------------------------------------------------------------------------- /Documentation/BootInitramfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/BootInitramfs.md -------------------------------------------------------------------------------- /Documentation/BootParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/BootParameters.md -------------------------------------------------------------------------------- /Documentation/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/Configuration.md -------------------------------------------------------------------------------- /Documentation/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/Contributing.md -------------------------------------------------------------------------------- /Documentation/DeviceSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/DeviceSpec.md -------------------------------------------------------------------------------- /Documentation/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/FAQ.md -------------------------------------------------------------------------------- /Documentation/GuessConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/GuessConfiguration.md -------------------------------------------------------------------------------- /Documentation/HowInitramfsWorks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/HowInitramfsWorks.md -------------------------------------------------------------------------------- /Documentation/InitramfsServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/InitramfsServices.md -------------------------------------------------------------------------------- /Documentation/MakeInitrdArguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/MakeInitrdArguments.md -------------------------------------------------------------------------------- /Documentation/NewFeature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/NewFeature.md -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/Root9p.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/Root9p.md -------------------------------------------------------------------------------- /Documentation/UeventDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/UeventDetails.md -------------------------------------------------------------------------------- /Documentation/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/logo-big.png -------------------------------------------------------------------------------- /Documentation/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/logo-small.png -------------------------------------------------------------------------------- /Documentation/manpages/depinfo.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/manpages/depinfo.1.md -------------------------------------------------------------------------------- /Documentation/manpages/initrd-diff.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/manpages/initrd-diff.1.md -------------------------------------------------------------------------------- /Documentation/manpages/initrd-ls.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/manpages/initrd-ls.1.md -------------------------------------------------------------------------------- /Documentation/manpages/initrd-put.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/manpages/initrd-put.1.md -------------------------------------------------------------------------------- /Documentation/manpages/initrd-scanmod.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/manpages/initrd-scanmod.1.md -------------------------------------------------------------------------------- /Documentation/manpages/make-initrd.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Documentation/manpages/make-initrd.1.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/autogen.sh -------------------------------------------------------------------------------- /conf/initrd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/conf/initrd.mk -------------------------------------------------------------------------------- /conf/initrd.mk.d/debug.mk.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/conf/initrd.mk.d/debug.mk.example -------------------------------------------------------------------------------- /conf/initrd.mk.d/guestfs.mk.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/conf/initrd.mk.d/guestfs.mk.example -------------------------------------------------------------------------------- /conf/initrd.mk.d/rescue.mk.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/conf/initrd.mk.d/rescue.mk.example -------------------------------------------------------------------------------- /conf/initrd.mk.d/uki.mk.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/conf/initrd.mk.d/uki.mk.example -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/config.sub -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/bash-completion/depinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/contrib/bash-completion/depinfo -------------------------------------------------------------------------------- /contrib/bash-completion/initrd-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/contrib/bash-completion/initrd-extract -------------------------------------------------------------------------------- /contrib/bash-completion/initrd-ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/contrib/bash-completion/initrd-ls -------------------------------------------------------------------------------- /contrib/bash-completion/initrd-scanmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/contrib/bash-completion/initrd-scanmod -------------------------------------------------------------------------------- /contrib/bash-completion/make-initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/contrib/bash-completion/make-initrd -------------------------------------------------------------------------------- /external/busybox/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/external/busybox/config -------------------------------------------------------------------------------- /features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/README.md -------------------------------------------------------------------------------- /features/add-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-modules/README.md -------------------------------------------------------------------------------- /features/add-modules/bin/put-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-modules/bin/put-modules -------------------------------------------------------------------------------- /features/add-modules/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-modules/config.mk -------------------------------------------------------------------------------- /features/add-modules/kmodule.deps.d/add-deps-f2fs: -------------------------------------------------------------------------------- 1 | add-deps-ext4 -------------------------------------------------------------------------------- /features/add-modules/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-modules/rules.mk -------------------------------------------------------------------------------- /features/add-udev-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-udev-rules/README.md -------------------------------------------------------------------------------- /features/add-udev-rules/bin/put-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-udev-rules/bin/put-rules -------------------------------------------------------------------------------- /features/add-udev-rules/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-udev-rules/config.mk -------------------------------------------------------------------------------- /features/add-udev-rules/guess/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-udev-rules/guess/common -------------------------------------------------------------------------------- /features/add-udev-rules/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/add-udev-rules/rules.mk -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0001-nothing/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0002-RUN-without-builtins/bin/blkid: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0002-RUN-without-builtins/bin/kmod: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0002-RUN-without-builtins/bin/xcdrom_id: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0003-RUN-with-builtins/bin/blkid: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0003-RUN-with-builtins/bin/kmod: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0003-RUN-with-builtins/bin/xcdrom_id: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0003-RUN-with-builtins/expect.in: -------------------------------------------------------------------------------- 1 | @cwd@/@ts@/bin/xcdrom_id 2 | tifm_sd 3 | rc=0 4 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0004-PROGRAM-with-builtins/bin/blkid: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0004-PROGRAM-with-builtins/bin/kmod: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/add-udev-rules/tests/ts0004-PROGRAM-with-builtins/bin/xcdrom_id: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /features/bcache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bcache/README.md -------------------------------------------------------------------------------- /features/bcache/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bcache/config.mk -------------------------------------------------------------------------------- /features/bcache/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bcache/guess/device -------------------------------------------------------------------------------- /features/bcache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bcache/rules.mk -------------------------------------------------------------------------------- /features/bootconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bootconfig/README.md -------------------------------------------------------------------------------- /features/bootconfig/bin/add-bootconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bootconfig/bin/add-bootconfig -------------------------------------------------------------------------------- /features/bootconfig/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bootconfig/config.mk -------------------------------------------------------------------------------- /features/bootconfig/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/bootconfig/rules.mk -------------------------------------------------------------------------------- /features/btrfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/btrfs/README.md -------------------------------------------------------------------------------- /features/btrfs/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/btrfs/config.mk -------------------------------------------------------------------------------- /features/btrfs/guess/fstype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/btrfs/guess/fstype -------------------------------------------------------------------------------- /features/btrfs/rules.d/99-initrd-btrfs.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/btrfs/rules.d/99-initrd-btrfs.rules -------------------------------------------------------------------------------- /features/btrfs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/btrfs/rules.mk -------------------------------------------------------------------------------- /features/cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/cleanup/README.md -------------------------------------------------------------------------------- /features/cleanup/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | GARBAGE ?= 3 | -------------------------------------------------------------------------------- /features/cleanup/guess/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/cleanup/guess/common -------------------------------------------------------------------------------- /features/cleanup/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/cleanup/rules.mk -------------------------------------------------------------------------------- /features/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/compress/README.md -------------------------------------------------------------------------------- /features/compress/bin/compress-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/compress/bin/compress-image -------------------------------------------------------------------------------- /features/compress/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/compress/config.mk -------------------------------------------------------------------------------- /features/compress/guess/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/compress/guess/common -------------------------------------------------------------------------------- /features/compress/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/compress/rules.mk -------------------------------------------------------------------------------- /features/debug-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/debug-tools/README.md -------------------------------------------------------------------------------- /features/debug-tools/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/debug-tools/config.mk -------------------------------------------------------------------------------- /features/debug-tools/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/debug-tools/rules.mk -------------------------------------------------------------------------------- /features/depmod-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/depmod-image/README.md -------------------------------------------------------------------------------- /features/depmod-image/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/depmod-image/rules.mk -------------------------------------------------------------------------------- /features/devmapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/devmapper/README.md -------------------------------------------------------------------------------- /features/devmapper/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/devmapper/config.mk -------------------------------------------------------------------------------- /features/devmapper/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/devmapper/guess/device -------------------------------------------------------------------------------- /features/devmapper/rules.d/11-initrd-dm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/devmapper/rules.d/11-initrd-dm.rules -------------------------------------------------------------------------------- /features/devmapper/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/devmapper/rules.mk -------------------------------------------------------------------------------- /features/dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/dialog/README.md -------------------------------------------------------------------------------- /features/dialog/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | 3 | DIALOG_DATADIR ?= $(FEATURESDIR)/dialog/data 4 | -------------------------------------------------------------------------------- /features/dialog/data/bin/dialog-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/dialog/data/bin/dialog-sh-functions -------------------------------------------------------------------------------- /features/dialog/rules.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | 3 | PUT_FEATURE_DIRS += $(DIALOG_DATADIR) 4 | -------------------------------------------------------------------------------- /features/dropbear/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/dropbear/config.mk -------------------------------------------------------------------------------- /features/dropbear/data/etc/dropbear/dropbear.conf: -------------------------------------------------------------------------------- 1 | DROPBEAR_EXTRA_ARGS= 2 | -------------------------------------------------------------------------------- /features/dropbear/data/etc/rc.d/init.d/dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/dropbear/data/etc/rc.d/init.d/dropbear -------------------------------------------------------------------------------- /features/dropbear/data/var/run/dropbear.pid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/dropbear/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/dropbear/rules.mk -------------------------------------------------------------------------------- /features/fsck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/fsck/README.md -------------------------------------------------------------------------------- /features/fsck/bin/find-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/fsck/bin/find-files -------------------------------------------------------------------------------- /features/fsck/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/fsck/config.mk -------------------------------------------------------------------------------- /features/fsck/data/etc/initrd/cmdline.d/fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/fsck/data/etc/initrd/cmdline.d/fsck -------------------------------------------------------------------------------- /features/fsck/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/fsck/rules.mk -------------------------------------------------------------------------------- /features/gpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpg/README.md -------------------------------------------------------------------------------- /features/gpg/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpg/config.mk -------------------------------------------------------------------------------- /features/gpg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpg/rules.mk -------------------------------------------------------------------------------- /features/gpu-drm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpu-drm/README.md -------------------------------------------------------------------------------- /features/gpu-drm/bin/get-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpu-drm/bin/get-modules -------------------------------------------------------------------------------- /features/gpu-drm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpu-drm/config.mk -------------------------------------------------------------------------------- /features/gpu-drm/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/gpu-drm/rules.mk -------------------------------------------------------------------------------- /features/guess-nvme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/guess-nvme/README.md -------------------------------------------------------------------------------- /features/guess-nvme/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/guess-nvme/guess/device -------------------------------------------------------------------------------- /features/guestfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/guestfs/README.md -------------------------------------------------------------------------------- /features/guestfs/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/guestfs/config.mk -------------------------------------------------------------------------------- /features/guestfs/data/etc/rc.d/init.d/guestfsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/guestfs/data/etc/rc.d/init.d/guestfsd -------------------------------------------------------------------------------- /features/guestfs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/guestfs/rules.mk -------------------------------------------------------------------------------- /features/iscsi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/iscsi/README.md -------------------------------------------------------------------------------- /features/iscsi/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/iscsi/config.mk -------------------------------------------------------------------------------- /features/iscsi/data/etc/initrd/cmdline.d/iscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/iscsi/data/etc/initrd/cmdline.d/iscsi -------------------------------------------------------------------------------- /features/iscsi/data/etc/rc.d/init.d/iscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/iscsi/data/etc/rc.d/init.d/iscsi -------------------------------------------------------------------------------- /features/iscsi/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/iscsi/rules.mk -------------------------------------------------------------------------------- /features/kickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/kickstart/README.md -------------------------------------------------------------------------------- /features/kickstart/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/kickstart/config.mk -------------------------------------------------------------------------------- /features/kickstart/data/bin/kickstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/kickstart/data/bin/kickstart -------------------------------------------------------------------------------- /features/kickstart/data/lib/pipeline/kickstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/kickstart/data/lib/pipeline/kickstart -------------------------------------------------------------------------------- /features/kickstart/data/mnt/sysimage: -------------------------------------------------------------------------------- 1 | ../root -------------------------------------------------------------------------------- /features/kickstart/data/root/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/kickstart/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/kickstart/rules.mk -------------------------------------------------------------------------------- /features/lazy-cleanup/rules.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | create: clean 3 | -------------------------------------------------------------------------------- /features/lkrg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lkrg/README.md -------------------------------------------------------------------------------- /features/lkrg/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lkrg/config.mk -------------------------------------------------------------------------------- /features/lkrg/data/etc/initrd/cmdline.d/lkrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lkrg/data/etc/initrd/cmdline.d/lkrg -------------------------------------------------------------------------------- /features/lkrg/data/etc/rc.d/init.d/lkrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lkrg/data/etc/rc.d/init.d/lkrg -------------------------------------------------------------------------------- /features/lkrg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lkrg/rules.mk -------------------------------------------------------------------------------- /features/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/locales/README.md -------------------------------------------------------------------------------- /features/locales/bin/put-l10n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/locales/bin/put-l10n -------------------------------------------------------------------------------- /features/locales/bin/put-locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/locales/bin/put-locale -------------------------------------------------------------------------------- /features/locales/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/locales/config.mk -------------------------------------------------------------------------------- /features/locales/guess/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/locales/guess/common -------------------------------------------------------------------------------- /features/locales/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/locales/rules.mk -------------------------------------------------------------------------------- /features/luks-unl0kr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks-unl0kr/README.md -------------------------------------------------------------------------------- /features/luks-unl0kr/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks-unl0kr/config.mk -------------------------------------------------------------------------------- /features/luks-unl0kr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks-unl0kr/rules.mk -------------------------------------------------------------------------------- /features/luks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/README.md -------------------------------------------------------------------------------- /features/luks/bin/get-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/bin/get-data -------------------------------------------------------------------------------- /features/luks/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/config.mk -------------------------------------------------------------------------------- /features/luks/data/bin/crypttab-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/data/bin/crypttab-sh-functions -------------------------------------------------------------------------------- /features/luks/data/etc/initrd/cmdline.d/luks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/data/etc/initrd/cmdline.d/luks -------------------------------------------------------------------------------- /features/luks/data/lib/initrd/post/cmdline/luks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/data/lib/initrd/post/cmdline/luks -------------------------------------------------------------------------------- /features/luks/data/lib/uevent/filters/luks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/data/lib/uevent/filters/luks -------------------------------------------------------------------------------- /features/luks/data/lib/uevent/filters/lukskeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/data/lib/uevent/filters/lukskeys -------------------------------------------------------------------------------- /features/luks/data/lib/uevent/handlers/085-luks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/data/lib/uevent/handlers/085-luks -------------------------------------------------------------------------------- /features/luks/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/guess/device -------------------------------------------------------------------------------- /features/luks/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/luks/rules.mk -------------------------------------------------------------------------------- /features/lvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lvm/README.md -------------------------------------------------------------------------------- /features/lvm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lvm/config.mk -------------------------------------------------------------------------------- /features/lvm/data/lib/uevent/filters/lvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lvm/data/lib/uevent/filters/lvm -------------------------------------------------------------------------------- /features/lvm/data/lib/uevent/handlers/060-lvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lvm/data/lib/uevent/handlers/060-lvm -------------------------------------------------------------------------------- /features/lvm/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lvm/guess/device -------------------------------------------------------------------------------- /features/lvm/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/lvm/rules.mk -------------------------------------------------------------------------------- /features/mdadm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/README.md -------------------------------------------------------------------------------- /features/mdadm/bin/generate-udev-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/bin/generate-udev-rules -------------------------------------------------------------------------------- /features/mdadm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/config.mk -------------------------------------------------------------------------------- /features/mdadm/data/.initrd/uevent/queues/md-raid-member/.tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/mdadm/data/etc/initrd/cmdline.d/mdadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/data/etc/initrd/cmdline.d/mdadm -------------------------------------------------------------------------------- /features/mdadm/data/lib/initrd/pre/udev/mdadm: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | [ "$1" = start ] || exit 0 4 | 5 | mkdir -p /run/mdadm 6 | -------------------------------------------------------------------------------- /features/mdadm/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/guess/device -------------------------------------------------------------------------------- /features/mdadm/rules.d/63-md-raid-arrays.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/rules.d/63-md-raid-arrays.rules -------------------------------------------------------------------------------- /features/mdadm/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/mdadm/rules.mk -------------------------------------------------------------------------------- /features/modules-blockdev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-blockdev/README.md -------------------------------------------------------------------------------- /features/modules-blockdev/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-blockdev/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-blockdev/rules.mk -------------------------------------------------------------------------------- /features/modules-crypto-user-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-crypto-user-api/README.md -------------------------------------------------------------------------------- /features/modules-crypto-user-api/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-crypto-user-api/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-crypto-user-api/rules.mk -------------------------------------------------------------------------------- /features/modules-filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-filesystem/README.md -------------------------------------------------------------------------------- /features/modules-filesystem/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-filesystem/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-filesystem/rules.mk -------------------------------------------------------------------------------- /features/modules-multiple-devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-multiple-devices/README.md -------------------------------------------------------------------------------- /features/modules-multiple-devices/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-multiple-devices/rules.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | MODULES_TRY_ADD += /drivers/md/ 3 | -------------------------------------------------------------------------------- /features/modules-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-network/README.md -------------------------------------------------------------------------------- /features/modules-network/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-network/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-network/rules.mk -------------------------------------------------------------------------------- /features/modules-nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-nfs/README.md -------------------------------------------------------------------------------- /features/modules-nfs/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-nfs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-nfs/rules.mk -------------------------------------------------------------------------------- /features/modules-sbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-sbc/README.md -------------------------------------------------------------------------------- /features/modules-sbc/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-sbc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-sbc/rules.mk -------------------------------------------------------------------------------- /features/modules-virtio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-virtio/README.md -------------------------------------------------------------------------------- /features/modules-virtio/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/modules-virtio/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/modules-virtio/rules.mk -------------------------------------------------------------------------------- /features/multipath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/multipath/README.md -------------------------------------------------------------------------------- /features/multipath/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/multipath/config.mk -------------------------------------------------------------------------------- /features/multipath/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/multipath/guess/device -------------------------------------------------------------------------------- /features/multipath/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/multipath/rules.mk -------------------------------------------------------------------------------- /features/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/README.md -------------------------------------------------------------------------------- /features/network/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/config.mk -------------------------------------------------------------------------------- /features/network/data/.initrd/online/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/network/data/.initrd/uevent/queues/network/.tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/network/data/bin/network-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/bin/network-sh-functions -------------------------------------------------------------------------------- /features/network/data/etc/network/ifaces/lo/ipv4address: -------------------------------------------------------------------------------- 1 | 127.0.0.1/8 2 | -------------------------------------------------------------------------------- /features/network/data/etc/udev/rules.d/81-network.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEM=="net", RUN+="/lib/uevent/filters/network" 2 | -------------------------------------------------------------------------------- /features/network/data/lib/network/addr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/lib/network/addr -------------------------------------------------------------------------------- /features/network/data/lib/network/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/lib/network/config -------------------------------------------------------------------------------- /features/network/data/lib/network/hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/lib/network/hostname -------------------------------------------------------------------------------- /features/network/data/lib/network/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/lib/network/link -------------------------------------------------------------------------------- /features/network/data/lib/network/resolvconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/lib/network/resolvconf -------------------------------------------------------------------------------- /features/network/data/lib/network/route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/data/lib/network/route -------------------------------------------------------------------------------- /features/network/data/lib/network/udhcpc6.script: -------------------------------------------------------------------------------- 1 | udhcpc4.script -------------------------------------------------------------------------------- /features/network/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/rules.mk -------------------------------------------------------------------------------- /features/network/tests/ts0001-cmdline-ip/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/tests/ts0001-cmdline-ip/expect -------------------------------------------------------------------------------- /features/network/tests/ts0001-cmdline-ip/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/tests/ts0001-cmdline-ip/run -------------------------------------------------------------------------------- /features/network/tests/ts0001-cmdline-route/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/network/tests/ts0001-cmdline-route/run -------------------------------------------------------------------------------- /features/nfsroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/nfsroot/README.md -------------------------------------------------------------------------------- /features/nfsroot/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/nfsroot/config.mk -------------------------------------------------------------------------------- /features/nfsroot/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/nfsroot/rules.mk -------------------------------------------------------------------------------- /features/overlayfs/guess/fstype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/overlayfs/guess/fstype -------------------------------------------------------------------------------- /features/pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/README.md -------------------------------------------------------------------------------- /features/pipeline/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/config.mk -------------------------------------------------------------------------------- /features/pipeline/data/.initrd/uevent/queues/pipeline/.tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/pipeline/data/etc/rc.d/init.d/pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/etc/rc.d/init.d/pipeline -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/getimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/getimage -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/mountfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/mountfs -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/overlayfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/overlayfs -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/ping -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/rootfs -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/wait-resume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/wait-resume -------------------------------------------------------------------------------- /features/pipeline/data/lib/pipeline/waitdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/data/lib/pipeline/waitdev -------------------------------------------------------------------------------- /features/pipeline/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/pipeline/rules.mk -------------------------------------------------------------------------------- /features/plymouth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/README.md -------------------------------------------------------------------------------- /features/plymouth/bin/get-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/bin/get-modules -------------------------------------------------------------------------------- /features/plymouth/bin/get-theme-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/bin/get-theme-files -------------------------------------------------------------------------------- /features/plymouth/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/config.mk -------------------------------------------------------------------------------- /features/plymouth/data/etc/rc.d/init.d/plymouth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/data/etc/rc.d/init.d/plymouth -------------------------------------------------------------------------------- /features/plymouth/data/lib/shell/plymouth-hide: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | plymouth --quit 2>/dev/null ||: 4 | -------------------------------------------------------------------------------- /features/plymouth/rules.d/70-uaccess.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/rules.d/70-uaccess.rules -------------------------------------------------------------------------------- /features/plymouth/rules.d/71-seat.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/rules.d/71-seat.rules -------------------------------------------------------------------------------- /features/plymouth/rules.d/73-seat-late.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/rules.d/73-seat-late.rules -------------------------------------------------------------------------------- /features/plymouth/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/plymouth/rules.mk -------------------------------------------------------------------------------- /features/qemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/qemu/README.md -------------------------------------------------------------------------------- /features/qemu/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/qemu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/qemu/rules.mk -------------------------------------------------------------------------------- /features/rdshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rdshell/README.md -------------------------------------------------------------------------------- /features/rdshell/bin/add-login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rdshell/bin/add-login -------------------------------------------------------------------------------- /features/rdshell/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rdshell/config.mk -------------------------------------------------------------------------------- /features/rdshell/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rdshell/rules.mk -------------------------------------------------------------------------------- /features/rootfs/bin/create-fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rootfs/bin/create-fstab -------------------------------------------------------------------------------- /features/rootfs/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rootfs/config.mk -------------------------------------------------------------------------------- /features/rootfs/guess/fstype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rootfs/guess/fstype -------------------------------------------------------------------------------- /features/rootfs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rootfs/rules.mk -------------------------------------------------------------------------------- /features/rootfs/tests/ts0001-guess-rootfs/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/rootfs/tests/ts0001-guess-rootfs/run -------------------------------------------------------------------------------- /features/runtime-compressed-fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime-compressed-fs/README.md -------------------------------------------------------------------------------- /features/runtime-compressed-fs/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime-compressed-fs/config.mk -------------------------------------------------------------------------------- /features/runtime-compressed-fs/pack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime-compressed-fs/pack.mk -------------------------------------------------------------------------------- /features/runtime-compressed-fs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime-compressed-fs/rules.mk -------------------------------------------------------------------------------- /features/runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/README.md -------------------------------------------------------------------------------- /features/runtime/data/bin/initrd-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/bin/initrd-sh-functions -------------------------------------------------------------------------------- /features/runtime/data/bin/rdshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/bin/rdshell -------------------------------------------------------------------------------- /features/runtime/data/bin/readlink-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/bin/readlink-e -------------------------------------------------------------------------------- /features/runtime/data/bin/state-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/bin/state-sh-functions -------------------------------------------------------------------------------- /features/runtime/data/bin/udev-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/bin/udev-run -------------------------------------------------------------------------------- /features/runtime/data/bin/uevent-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/bin/uevent-sh-functions -------------------------------------------------------------------------------- /features/runtime/data/etc/init.d: -------------------------------------------------------------------------------- 1 | rc.d/init.d -------------------------------------------------------------------------------- /features/runtime/data/etc/initrd/cmdline.d/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/initrd/cmdline.d/base -------------------------------------------------------------------------------- /features/runtime/data/etc/initrd/method: -------------------------------------------------------------------------------- 1 | localdev 2 | -------------------------------------------------------------------------------- /features/runtime/data/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/profile -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/cmdline -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/fstab -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/functions -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/killall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/killall -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/modules -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/mountfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/mountfs -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/outformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/outformat -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/rootdelay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/rootdelay -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/runinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/runinit -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/sysctl -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/template -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/udev -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/init.d/uevent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/init.d/uevent -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/rc -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc.sysexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/rc.sysexec -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc.sysinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/etc/rc.d/rc.sysinit -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc0.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc1.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc2.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc3.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc4.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc5.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/rc.d/rc6.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/sysconfig/init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/etc/udev/rules.d/99-resume.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEM=="block", ACTION!="remove", RUN+="/lib/uevent/filters/resume" 2 | -------------------------------------------------------------------------------- /features/runtime/data/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/init -------------------------------------------------------------------------------- /features/runtime/data/lib/initrd/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/lib/initrd/pre/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/lib/initrd/udevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/lib/initrd/udevd -------------------------------------------------------------------------------- /features/runtime/data/lib/shell/rescue-mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/lib/shell/rescue-mods -------------------------------------------------------------------------------- /features/runtime/data/lib/uevent/each/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/lib/uevent/each/pre/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/runtime/data/lib/uevent/filters/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/lib/uevent/filters/debug -------------------------------------------------------------------------------- /features/runtime/data/lib/uevent/filters/resume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/lib/uevent/filters/resume -------------------------------------------------------------------------------- /features/runtime/data/sbin/rootdelayd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/sbin/rootdelayd -------------------------------------------------------------------------------- /features/runtime/data/sbin/ueventd-queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/data/sbin/ueventd-queue -------------------------------------------------------------------------------- /features/runtime/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/rules.mk -------------------------------------------------------------------------------- /features/runtime/src/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/chrooted/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/chrooted/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/chrooted/chrooted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/chrooted/chrooted.c -------------------------------------------------------------------------------- /features/runtime/src/environ/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/environ/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/environ/environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/environ/environ.c -------------------------------------------------------------------------------- /features/runtime/src/halt/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/halt/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/halt/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/halt/halt.c -------------------------------------------------------------------------------- /features/runtime/src/halt/hddown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/halt/hddown.c -------------------------------------------------------------------------------- /features/runtime/src/halt/ifdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/halt/ifdown.c -------------------------------------------------------------------------------- /features/runtime/src/halt/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/halt/reboot.h -------------------------------------------------------------------------------- /features/runtime/src/halt/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/halt/utmp.c -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/console.c -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/logging.c -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/memory.c -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/rd/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/rd/console.h -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/rd/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/rd/list.h -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/rd/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/rd/logging.h -------------------------------------------------------------------------------- /features/runtime/src/libinitramfs/rd/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/libinitramfs/rd/memory.h -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/README.locking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/README.locking -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/dummypmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/dummypmap.c -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/dummypmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/dummypmap.h -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/main.c -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/mount.c -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/nfsmount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/nfsmount.h -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/portmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/portmap.c -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/sunrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/sunrpc.c -------------------------------------------------------------------------------- /features/runtime/src/nfsmount/sunrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/nfsmount/sunrpc.h -------------------------------------------------------------------------------- /features/runtime/src/resume/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/resume/getarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/getarg.c -------------------------------------------------------------------------------- /features/runtime/src/resume/name_to_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/name_to_dev.c -------------------------------------------------------------------------------- /features/runtime/src/resume/name_to_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/name_to_dev.h -------------------------------------------------------------------------------- /features/runtime/src/resume/resume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/resume.c -------------------------------------------------------------------------------- /features/runtime/src/resume/resume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/resume.h -------------------------------------------------------------------------------- /features/runtime/src/resume/resumelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/resume/resumelib.c -------------------------------------------------------------------------------- /features/runtime/src/runas/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/runas/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/runas/runas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/runas/runas.c -------------------------------------------------------------------------------- /features/runtime/src/sysexec/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/sysexec/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/sysexec/sysexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/sysexec/sysexec.c -------------------------------------------------------------------------------- /features/runtime/src/timestamp/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/timestamp/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/timestamp/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/timestamp/timestamp.c -------------------------------------------------------------------------------- /features/runtime/src/ueventd/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/ueventd/Makefile.mk -------------------------------------------------------------------------------- /features/runtime/src/ueventd/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/ueventd/path.c -------------------------------------------------------------------------------- /features/runtime/src/ueventd/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/ueventd/process.c -------------------------------------------------------------------------------- /features/runtime/src/ueventd/ueventd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/ueventd/ueventd.c -------------------------------------------------------------------------------- /features/runtime/src/ueventd/ueventd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/runtime/src/ueventd/ueventd.h -------------------------------------------------------------------------------- /features/scsi-mode/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/scsi-mode/guess/device -------------------------------------------------------------------------------- /features/smart-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/smart-card/README.md -------------------------------------------------------------------------------- /features/smart-card/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/smart-card/config.mk -------------------------------------------------------------------------------- /features/smart-card/data/bin/smart-card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/smart-card/data/bin/smart-card -------------------------------------------------------------------------------- /features/smart-card/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/smart-card/rules.mk -------------------------------------------------------------------------------- /features/sshfsroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/README.md -------------------------------------------------------------------------------- /features/sshfsroot/bin/get-dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/bin/get-dirs -------------------------------------------------------------------------------- /features/sshfsroot/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/config.mk -------------------------------------------------------------------------------- /features/sshfsroot/data/bin/ask-pass-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/data/bin/ask-pass-common -------------------------------------------------------------------------------- /features/sshfsroot/data/bin/sshfs-client: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | . initrd-sh-functions 4 | 5 | omit_pid "$BASHPID" 6 | exec ssh "$@" 7 | -------------------------------------------------------------------------------- /features/sshfsroot/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/rules.mk -------------------------------------------------------------------------------- /features/sshfsroot/src/ask-pass/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/src/ask-pass/Makefile.mk -------------------------------------------------------------------------------- /features/sshfsroot/src/ask-pass/ask-pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sshfsroot/src/ask-pass/ask-pass.c -------------------------------------------------------------------------------- /features/sysfs-dma/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sysfs-dma/guess/device -------------------------------------------------------------------------------- /features/sysfs-virtio-pci/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/sysfs-virtio-pci/guess/device -------------------------------------------------------------------------------- /features/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/syslog/README.md -------------------------------------------------------------------------------- /features/syslog/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/syslog/config.mk -------------------------------------------------------------------------------- /features/syslog/data/etc/rc.d/init.d/klogd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/syslog/data/etc/rc.d/init.d/klogd -------------------------------------------------------------------------------- /features/syslog/data/etc/rc.d/init.d/syslogd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/syslog/data/etc/rc.d/init.d/syslogd -------------------------------------------------------------------------------- /features/syslog/data/etc/syslog.conf: -------------------------------------------------------------------------------- 1 | *.* -/var/log/messages 2 | -------------------------------------------------------------------------------- /features/syslog/data/etc/syslog.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/syslog/data/var/log/messages: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/syslog/data/var/run/klogd.pid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/syslog/data/var/run/syslogd.pid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/syslog/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/syslog/rules.mk -------------------------------------------------------------------------------- /features/system-glibc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/system-glibc/README.md -------------------------------------------------------------------------------- /features/system-glibc/bin/system-glibc-pwgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/system-glibc/bin/system-glibc-pwgr -------------------------------------------------------------------------------- /features/system-glibc/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/system-glibc/config.mk -------------------------------------------------------------------------------- /features/system-glibc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/system-glibc/rules.mk -------------------------------------------------------------------------------- /features/telnetd/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/telnetd/config.mk -------------------------------------------------------------------------------- /features/telnetd/data/bin/telnetd-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/telnetd/data/bin/telnetd-shell -------------------------------------------------------------------------------- /features/telnetd/data/etc/telnetd/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/telnetd/data/etc/telnetd/banner -------------------------------------------------------------------------------- /features/telnetd/data/var/run/telnetd.pid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/telnetd/rules.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | PUT_FEATURE_DIRS += $(TELNET_DATADIR) 3 | -------------------------------------------------------------------------------- /features/ucode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/ucode/README.md -------------------------------------------------------------------------------- /features/ucode/bin/add-ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/ucode/bin/add-ucode -------------------------------------------------------------------------------- /features/ucode/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/ucode/config.mk -------------------------------------------------------------------------------- /features/ucode/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/ucode/rules.mk -------------------------------------------------------------------------------- /features/uki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/uki/README.md -------------------------------------------------------------------------------- /features/uki/bin/find-vmlinuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/uki/bin/find-vmlinuz -------------------------------------------------------------------------------- /features/uki/bin/pack-uki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/uki/bin/pack-uki -------------------------------------------------------------------------------- /features/uki/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/uki/config.mk -------------------------------------------------------------------------------- /features/uki/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/uki/rules.mk -------------------------------------------------------------------------------- /features/usb-storage/guess/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/usb-storage/guess/device -------------------------------------------------------------------------------- /features/usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/usb/README.md -------------------------------------------------------------------------------- /features/usb/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | $(call feature-requires,add-modules depmod-image) 3 | -------------------------------------------------------------------------------- /features/usb/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/usb/rules.mk -------------------------------------------------------------------------------- /features/zfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/README.md -------------------------------------------------------------------------------- /features/zfs/bin/get-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/bin/get-data -------------------------------------------------------------------------------- /features/zfs/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/config.mk -------------------------------------------------------------------------------- /features/zfs/data/etc/initrd/cmdline.d/zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/data/etc/initrd/cmdline.d/zfs -------------------------------------------------------------------------------- /features/zfs/data/etc/rc.d/init.d/uevent-zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/data/etc/rc.d/init.d/uevent-zfs -------------------------------------------------------------------------------- /features/zfs/data/lib/initrd/post/fstab/zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/data/lib/initrd/post/fstab/zfs -------------------------------------------------------------------------------- /features/zfs/data/sbin/ueventd-zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/data/sbin/ueventd-zfs -------------------------------------------------------------------------------- /features/zfs/guess/fstype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/guess/fstype -------------------------------------------------------------------------------- /features/zfs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/features/zfs/rules.mk -------------------------------------------------------------------------------- /guess/bootconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/bootconfig/README.md -------------------------------------------------------------------------------- /guess/bootconfig/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/bootconfig/action -------------------------------------------------------------------------------- /guess/bootconfig/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/bootconfig/rules.mk -------------------------------------------------------------------------------- /guess/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/common/README.md -------------------------------------------------------------------------------- /guess/common/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/common/action -------------------------------------------------------------------------------- /guess/common/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/common/rules.mk -------------------------------------------------------------------------------- /guess/device-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device-tree/README.md -------------------------------------------------------------------------------- /guess/device-tree/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device-tree/action -------------------------------------------------------------------------------- /guess/device-tree/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device-tree/config.mk -------------------------------------------------------------------------------- /guess/device-tree/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device-tree/rules.mk -------------------------------------------------------------------------------- /guess/device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device/README.md -------------------------------------------------------------------------------- /guess/device/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device/action -------------------------------------------------------------------------------- /guess/device/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/device/rules.mk -------------------------------------------------------------------------------- /guess/keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/keyboard/README.md -------------------------------------------------------------------------------- /guess/keyboard/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/keyboard/action -------------------------------------------------------------------------------- /guess/keyboard/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/keyboard/config.mk -------------------------------------------------------------------------------- /guess/keyboard/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/keyboard/rules.mk -------------------------------------------------------------------------------- /guess/lkrg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/lkrg/README.md -------------------------------------------------------------------------------- /guess/lkrg/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/lkrg/action -------------------------------------------------------------------------------- /guess/lkrg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/lkrg/rules.mk -------------------------------------------------------------------------------- /guess/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/net/README.md -------------------------------------------------------------------------------- /guess/net/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/net/action -------------------------------------------------------------------------------- /guess/net/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/net/config.mk -------------------------------------------------------------------------------- /guess/net/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/net/rules.mk -------------------------------------------------------------------------------- /guess/qemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/qemu/README.md -------------------------------------------------------------------------------- /guess/qemu/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/qemu/action -------------------------------------------------------------------------------- /guess/qemu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/qemu/rules.mk -------------------------------------------------------------------------------- /guess/rdshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/rdshell/README.md -------------------------------------------------------------------------------- /guess/rdshell/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/rdshell/action -------------------------------------------------------------------------------- /guess/rdshell/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/rdshell/rules.mk -------------------------------------------------------------------------------- /guess/resume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/resume/README.md -------------------------------------------------------------------------------- /guess/resume/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/resume/action -------------------------------------------------------------------------------- /guess/resume/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/resume/rules.mk -------------------------------------------------------------------------------- /guess/root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/root/README.md -------------------------------------------------------------------------------- /guess/root/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/root/action -------------------------------------------------------------------------------- /guess/root/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-3.0-or-later 2 | GUESS_MOUNTPOINTS ?= 3 | -------------------------------------------------------------------------------- /guess/root/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/root/rules.mk -------------------------------------------------------------------------------- /guess/smart-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/smart-card/README.md -------------------------------------------------------------------------------- /guess/smart-card/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/smart-card/action -------------------------------------------------------------------------------- /guess/smart-card/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/smart-card/config.mk -------------------------------------------------------------------------------- /guess/smart-card/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/smart-card/rules.mk -------------------------------------------------------------------------------- /guess/touchscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/touchscreen/README.md -------------------------------------------------------------------------------- /guess/touchscreen/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/touchscreen/action -------------------------------------------------------------------------------- /guess/touchscreen/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/touchscreen/rules.mk -------------------------------------------------------------------------------- /guess/ucode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/ucode/README.md -------------------------------------------------------------------------------- /guess/ucode/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/ucode/action -------------------------------------------------------------------------------- /guess/ucode/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/guess/ucode/rules.mk -------------------------------------------------------------------------------- /include/temp_failure_retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/include/temp_failure_retry.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/install-sh -------------------------------------------------------------------------------- /mk/config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/config.mk.in -------------------------------------------------------------------------------- /mk/functions.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/functions.mk.in -------------------------------------------------------------------------------- /mk/genimage.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/genimage.mk.in -------------------------------------------------------------------------------- /mk/guess.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/guess.mk.in -------------------------------------------------------------------------------- /mk/main.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/main.mk.in -------------------------------------------------------------------------------- /mk/packimage.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/packimage.mk.in -------------------------------------------------------------------------------- /mk/show-feature-info.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/show-feature-info.mk.in -------------------------------------------------------------------------------- /mk/tests/ts0001-word-position/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0001-word-position/expect -------------------------------------------------------------------------------- /mk/tests/ts0001-word-position/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0001-word-position/run -------------------------------------------------------------------------------- /mk/tests/ts0002-set-sysconfig/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0002-set-sysconfig/expect -------------------------------------------------------------------------------- /mk/tests/ts0002-set-sysconfig/print-vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0002-set-sysconfig/print-vars -------------------------------------------------------------------------------- /mk/tests/ts0002-set-sysconfig/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0002-set-sysconfig/run -------------------------------------------------------------------------------- /mk/tests/ts0003-include-features-once/aaa/rules.mk: -------------------------------------------------------------------------------- 1 | $(info aaa/rules.mk) 2 | -------------------------------------------------------------------------------- /mk/tests/ts0003-include-features-once/expect: -------------------------------------------------------------------------------- 1 | aaa/rules.mk 2 | rc=0 3 | -------------------------------------------------------------------------------- /mk/tests/ts0003-include-features-once/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0003-include-features-once/run -------------------------------------------------------------------------------- /mk/tests/ts0004-include-features-once/aaa/rules.mk: -------------------------------------------------------------------------------- 1 | $(info aaa/rules.mk) 2 | -------------------------------------------------------------------------------- /mk/tests/ts0004-include-features-once/expect: -------------------------------------------------------------------------------- 1 | aaa/rules.mk 2 | rc=0 3 | -------------------------------------------------------------------------------- /mk/tests/ts0004-include-features-once/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0004-include-features-once/run -------------------------------------------------------------------------------- /mk/tests/ts0005-include-feature/aaa/rules.mk: -------------------------------------------------------------------------------- 1 | $(info aaa/rules.mk) 2 | -------------------------------------------------------------------------------- /mk/tests/ts0005-include-feature/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0005-include-feature/expect -------------------------------------------------------------------------------- /mk/tests/ts0005-include-feature/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0005-include-feature/run -------------------------------------------------------------------------------- /mk/tests/ts0006-include-features-once/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0006-include-features-once/expect -------------------------------------------------------------------------------- /mk/tests/ts0006-include-features-once/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0006-include-features-once/run -------------------------------------------------------------------------------- /mk/tests/ts0007-if-command-ret-code/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0007-if-command-ret-code/expect -------------------------------------------------------------------------------- /mk/tests/ts0007-if-command-ret-code/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0007-if-command-ret-code/run -------------------------------------------------------------------------------- /mk/tests/ts0009-wildcard-features/aaa/config.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mk/tests/ts0009-wildcard-features/ccc/config.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mk/tests/ts0009-wildcard-features/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0009-wildcard-features/expect -------------------------------------------------------------------------------- /mk/tests/ts0009-wildcard-features/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0009-wildcard-features/run -------------------------------------------------------------------------------- /mk/tests/ts0010-assign-shell-once/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0010-assign-shell-once/expect -------------------------------------------------------------------------------- /mk/tests/ts0010-assign-shell-once/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/mk/tests/ts0010-assign-shell-once/run -------------------------------------------------------------------------------- /testing/expect-password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/expect-password -------------------------------------------------------------------------------- /testing/generate-metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/generate-metrics -------------------------------------------------------------------------------- /testing/ks-altlinux-initrd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-altlinux-initrd.cfg -------------------------------------------------------------------------------- /testing/ks-done.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-done.cfg -------------------------------------------------------------------------------- /testing/ks-fedora-initrd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-fedora-initrd.cfg -------------------------------------------------------------------------------- /testing/ks-gentoo-initrd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-gentoo-initrd.cfg -------------------------------------------------------------------------------- /testing/ks-gentoo_musl-initrd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-gentoo_musl-initrd.cfg -------------------------------------------------------------------------------- /testing/ks-sysimage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-sysimage.cfg -------------------------------------------------------------------------------- /testing/ks-ubuntu-initrd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/ks-ubuntu-initrd.cfg -------------------------------------------------------------------------------- /testing/packages-altlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/packages-altlinux -------------------------------------------------------------------------------- /testing/packages-fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/packages-fedora -------------------------------------------------------------------------------- /testing/packages-gentoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/packages-gentoo -------------------------------------------------------------------------------- /testing/packages-gentoo_musl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/packages-gentoo_musl -------------------------------------------------------------------------------- /testing/packages-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/packages-ubuntu -------------------------------------------------------------------------------- /testing/sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/sh-functions -------------------------------------------------------------------------------- /testing/test-root-btrfs-subvol.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-btrfs-subvol.cfg -------------------------------------------------------------------------------- /testing/test-root-efi-partition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-efi-partition.cfg -------------------------------------------------------------------------------- /testing/test-root-efi-reqpartition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-efi-reqpartition.cfg -------------------------------------------------------------------------------- /testing/test-root-f2fs-partition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-f2fs-partition.cfg -------------------------------------------------------------------------------- /testing/test-root-initramfs-on-erofs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-initramfs-on-erofs.cfg -------------------------------------------------------------------------------- /testing/test-root-initramfs-on-squashfs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-initramfs-on-squashfs.cfg -------------------------------------------------------------------------------- /testing/test-root-luks+crypttab+noparam.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks+crypttab+noparam.cfg -------------------------------------------------------------------------------- /testing/test-root-luks+lukskey-noparam.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks+lukskey-noparam.cfg -------------------------------------------------------------------------------- /testing/test-root-luks+lukskey-plain.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks+lukskey-plain.cfg -------------------------------------------------------------------------------- /testing/test-root-luks+lukskey-raw.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks+lukskey-raw.cfg -------------------------------------------------------------------------------- /testing/test-root-luks-over-lvm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks-over-lvm.cfg -------------------------------------------------------------------------------- /testing/test-root-luks-over-raid1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks-over-raid1.cfg -------------------------------------------------------------------------------- /testing/test-root-luks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-luks.cfg -------------------------------------------------------------------------------- /testing/test-root-lvm+luks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-lvm+luks.cfg -------------------------------------------------------------------------------- /testing/test-root-lvm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-lvm.cfg -------------------------------------------------------------------------------- /testing/test-root-partition+usr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-partition+usr.cfg -------------------------------------------------------------------------------- /testing/test-root-partition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-partition.cfg -------------------------------------------------------------------------------- /testing/test-root-pipeline.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-pipeline.cfg -------------------------------------------------------------------------------- /testing/test-root-raid1+raid5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-raid1+raid5.cfg -------------------------------------------------------------------------------- /testing/test-root-raid1-degraded.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-raid1-degraded.cfg -------------------------------------------------------------------------------- /testing/test-root-raid1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-raid1.cfg -------------------------------------------------------------------------------- /testing/test-root-raid5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-raid5.cfg -------------------------------------------------------------------------------- /testing/test-root-sdcard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-sdcard.cfg -------------------------------------------------------------------------------- /testing/test-root-xfs-partition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-xfs-partition.cfg -------------------------------------------------------------------------------- /testing/test-root-zfs-partition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/test-root-zfs-partition.cfg -------------------------------------------------------------------------------- /testing/testing-altlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/testing-altlinux -------------------------------------------------------------------------------- /testing/testing-fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/testing-fedora -------------------------------------------------------------------------------- /testing/testing-gentoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/testing-gentoo -------------------------------------------------------------------------------- /testing/testing-gentoo_musl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/testing-gentoo_musl -------------------------------------------------------------------------------- /testing/testing-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/testing-ubuntu -------------------------------------------------------------------------------- /testing/tests/put-file-sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/put-file-sh-functions -------------------------------------------------------------------------------- /testing/tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/run -------------------------------------------------------------------------------- /testing/tests/ts0001-kernel-compare/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0001-kernel-compare/expect -------------------------------------------------------------------------------- /testing/tests/ts0001-kernel-compare/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0001-kernel-compare/run -------------------------------------------------------------------------------- /testing/tests/ts0010-put-file/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /testing/tests/ts0010-put-file/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0010-put-file/run -------------------------------------------------------------------------------- /testing/tests/ts0010-put-file/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0010-put-file/src/Makefile -------------------------------------------------------------------------------- /testing/tests/ts0010-put-file/src/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0010-put-file/src/foo.c -------------------------------------------------------------------------------- /testing/tests/ts0010-put-file/src/libfoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0010-put-file/src/libfoo.c -------------------------------------------------------------------------------- /testing/tests/ts0010-put-file/src/libfoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0010-put-file/src/libfoo.h -------------------------------------------------------------------------------- /testing/tests/ts0011-put-file/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /testing/tests/ts0011-put-file/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0011-put-file/run -------------------------------------------------------------------------------- /testing/tests/ts0012-put-file/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0012-put-file/expect -------------------------------------------------------------------------------- /testing/tests/ts0012-put-file/from/bin: -------------------------------------------------------------------------------- 1 | usr/bin -------------------------------------------------------------------------------- /testing/tests/ts0012-put-file/from/usr/bin/foo: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /testing/tests/ts0012-put-file/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0012-put-file/run -------------------------------------------------------------------------------- /testing/tests/ts0013-put-file/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0013-put-file/expect -------------------------------------------------------------------------------- /testing/tests/ts0013-put-file/from/bin: -------------------------------------------------------------------------------- 1 | sbin -------------------------------------------------------------------------------- /testing/tests/ts0013-put-file/from/sbin: -------------------------------------------------------------------------------- 1 | usr/bin -------------------------------------------------------------------------------- /testing/tests/ts0013-put-file/from/usr/bin/bar: -------------------------------------------------------------------------------- 1 | ../sbin/foo -------------------------------------------------------------------------------- /testing/tests/ts0013-put-file/from/usr/sbin/foo: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /testing/tests/ts0013-put-file/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0013-put-file/run -------------------------------------------------------------------------------- /testing/tests/ts0014-put-file/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /testing/tests/ts0014-put-file/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0014-put-file/run -------------------------------------------------------------------------------- /testing/tests/ts0015-put-file/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /testing/tests/ts0015-put-file/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0015-put-file/run -------------------------------------------------------------------------------- /testing/tests/ts0016-sort-services/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0016-sort-services/data -------------------------------------------------------------------------------- /testing/tests/ts0016-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0016-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0016-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd/data" 6 | -------------------------------------------------------------------------------- /testing/tests/ts0017-sort-services/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0017-sort-services/data -------------------------------------------------------------------------------- /testing/tests/ts0017-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0017-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0017-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd/data" 6 | -------------------------------------------------------------------------------- /testing/tests/ts0018-sort-services/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0018-sort-services/data -------------------------------------------------------------------------------- /testing/tests/ts0018-sort-services/expect: -------------------------------------------------------------------------------- 1 | sort-services: unfinished LSB header 2 | rc=1 3 | -------------------------------------------------------------------------------- /testing/tests/ts0018-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd/data" 6 | -------------------------------------------------------------------------------- /testing/tests/ts0019-sort-services/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0019-sort-services/data -------------------------------------------------------------------------------- /testing/tests/ts0019-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0019-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0019-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd/data" 6 | -------------------------------------------------------------------------------- /testing/tests/ts0020-sort-services/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0020-sort-services/data -------------------------------------------------------------------------------- /testing/tests/ts0020-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0020-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0020-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd/data" 6 | -------------------------------------------------------------------------------- /testing/tests/ts0021-sort-services/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0021-sort-services/data -------------------------------------------------------------------------------- /testing/tests/ts0021-sort-services/expect: -------------------------------------------------------------------------------- 1 | sort-services: duplicate keyword: Provides 2 | rc=1 3 | -------------------------------------------------------------------------------- /testing/tests/ts0021-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -efu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd/data" 6 | -------------------------------------------------------------------------------- /testing/tests/ts0022-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0022-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0022-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --json "$cwd"/data* 6 | -------------------------------------------------------------------------------- /testing/tests/ts0023-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0023-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0023-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0023-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0024-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0024-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0024-sort-services/data02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0024-sort-services/data02 -------------------------------------------------------------------------------- /testing/tests/ts0024-sort-services/data03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0024-sort-services/data03 -------------------------------------------------------------------------------- /testing/tests/ts0024-sort-services/data04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0024-sort-services/data04 -------------------------------------------------------------------------------- /testing/tests/ts0024-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0024-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0024-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0024-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0025-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0025-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0025-sort-services/data02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0025-sort-services/data02 -------------------------------------------------------------------------------- /testing/tests/ts0025-sort-services/data03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0025-sort-services/data03 -------------------------------------------------------------------------------- /testing/tests/ts0025-sort-services/data04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0025-sort-services/data04 -------------------------------------------------------------------------------- /testing/tests/ts0025-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0025-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0025-sort-services/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eu 2 | 3 | cwd="${0%/*}" 4 | 5 | tools/sort-services --dry-run "$cwd"/data* 2>&1 6 | -------------------------------------------------------------------------------- /testing/tests/ts0026-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0026-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0026-sort-services/data02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0026-sort-services/data02 -------------------------------------------------------------------------------- /testing/tests/ts0026-sort-services/data03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0026-sort-services/data03 -------------------------------------------------------------------------------- /testing/tests/ts0026-sort-services/data04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0026-sort-services/data04 -------------------------------------------------------------------------------- /testing/tests/ts0026-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0026-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0026-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0026-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0027-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0027-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0027-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0027-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0027-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0027-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0028-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0028-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0028-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0028-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0028-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0028-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0029-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0029-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0029-sort-services/data02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0029-sort-services/data02 -------------------------------------------------------------------------------- /testing/tests/ts0029-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0029-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0029-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0029-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/data01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/data01 -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/data02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/data02 -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/data03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/data03 -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/data04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/data04 -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/data05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/data05 -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0030-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0030-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0031-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0031-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0031-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0031-sort-services/run -------------------------------------------------------------------------------- /testing/tests/ts0032-sort-services/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0032-sort-services/expect -------------------------------------------------------------------------------- /testing/tests/ts0032-sort-services/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/testing/tests/ts0032-sort-services/run -------------------------------------------------------------------------------- /tools/bug-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/bug-report -------------------------------------------------------------------------------- /tools/create-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/create-rootfs -------------------------------------------------------------------------------- /tools/find-terminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/find-terminfo -------------------------------------------------------------------------------- /tools/gen-ld-so-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/gen-ld-so-conf -------------------------------------------------------------------------------- /tools/get-ldconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/get-ldconfig -------------------------------------------------------------------------------- /tools/get-libc-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/get-libc-dir -------------------------------------------------------------------------------- /tools/guess-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/guess-config -------------------------------------------------------------------------------- /tools/guess-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/guess-functions -------------------------------------------------------------------------------- /tools/initrd-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/initrd-release -------------------------------------------------------------------------------- /tools/kernel-compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/kernel-compare -------------------------------------------------------------------------------- /tools/kernel-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/kernel-version -------------------------------------------------------------------------------- /tools/msg-timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/msg-timestamp -------------------------------------------------------------------------------- /tools/pack-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/pack-image -------------------------------------------------------------------------------- /tools/put-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/put-file -------------------------------------------------------------------------------- /tools/put-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/put-tree -------------------------------------------------------------------------------- /tools/sh-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/sh-functions -------------------------------------------------------------------------------- /tools/show-install-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/show-install-info -------------------------------------------------------------------------------- /tools/sort-services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/sort-services -------------------------------------------------------------------------------- /tools/wrapper-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/tools/wrapper-functions -------------------------------------------------------------------------------- /utils/depinfo/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/depinfo/Makefile.mk -------------------------------------------------------------------------------- /utils/depinfo/kmod-depinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/depinfo/kmod-depinfo.c -------------------------------------------------------------------------------- /utils/initrd-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-common.c -------------------------------------------------------------------------------- /utils/initrd-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-common.h -------------------------------------------------------------------------------- /utils/initrd-cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-cpio.c -------------------------------------------------------------------------------- /utils/initrd-cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-cpio.h -------------------------------------------------------------------------------- /utils/initrd-decompress-bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-decompress-bzip2.c -------------------------------------------------------------------------------- /utils/initrd-decompress-gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-decompress-gzip.c -------------------------------------------------------------------------------- /utils/initrd-decompress-lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-decompress-lzma.c -------------------------------------------------------------------------------- /utils/initrd-decompress-zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-decompress-zstd.c -------------------------------------------------------------------------------- /utils/initrd-decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-decompress.c -------------------------------------------------------------------------------- /utils/initrd-decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-decompress.h -------------------------------------------------------------------------------- /utils/initrd-diff/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-diff/Makefile.mk -------------------------------------------------------------------------------- /utils/initrd-diff/initrd-diff.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-diff/initrd-diff.in -------------------------------------------------------------------------------- /utils/initrd-extract/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-extract/Makefile.mk -------------------------------------------------------------------------------- /utils/initrd-extract/initrd-extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-extract/initrd-extract.c -------------------------------------------------------------------------------- /utils/initrd-extract/tests/ts0001/data.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-extract/tests/ts0001/data.cpio -------------------------------------------------------------------------------- /utils/initrd-extract/tests/ts0001/empty.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-extract/tests/ts0001/empty.cpio -------------------------------------------------------------------------------- /utils/initrd-extract/tests/ts0001/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /utils/initrd-extract/tests/ts0001/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-extract/tests/ts0001/run -------------------------------------------------------------------------------- /utils/initrd-ls/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/Makefile.mk -------------------------------------------------------------------------------- /utils/initrd-ls/initrd-ls-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/initrd-ls-format.c -------------------------------------------------------------------------------- /utils/initrd-ls/initrd-ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/initrd-ls.c -------------------------------------------------------------------------------- /utils/initrd-ls/initrd-ls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/initrd-ls.h -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0001/empty.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0001/empty.cpio -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0001/expect: -------------------------------------------------------------------------------- 1 | 1 cpio archive, size 512 bytes 2 | rc=0 3 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0001/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0001/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0002/data.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0002/data.cpio -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0002/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0002/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0002/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0002/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0003/data.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0003/data.cpio -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0003/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0003/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0003/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0003/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0004/data.cpio.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0004/data.cpio.gz -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0004/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0004/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0004/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0004/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0005/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0005/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0005/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0005/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0005/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0005/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0006/data1.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0006/data1.cpio -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0006/data2.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0006/data2.cpio -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0006/data3.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0006/data3.cpio -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0006/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0006/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0006/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0006/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0007/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0007/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0007/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0007/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0007/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0007/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0008/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0008/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0008/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0008/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0008/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0008/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0010/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0010/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0010/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0010/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0010/info: -------------------------------------------------------------------------------- 1 | gzip + gzip 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0010/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0010/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0011/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0011/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0011/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0011/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0011/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0011/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0011/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0011/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0012/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0012/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0012/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0012/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0012/info: -------------------------------------------------------------------------------- 1 | gzip + bzip2 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0012/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0012/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0013/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0013/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0013/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0013/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0013/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0013/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0013/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0013/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0014/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0014/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0014/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0014/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0014/info: -------------------------------------------------------------------------------- 1 | gzip + xz 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0014/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0014/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0015/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0015/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0015/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0015/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0015/info: -------------------------------------------------------------------------------- 1 | gzip + xz + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0015/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0015/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0016/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0016/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0016/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0016/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0016/info: -------------------------------------------------------------------------------- 1 | gzip + zstd 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0016/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0016/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0017/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0017/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0017/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0017/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0017/info: -------------------------------------------------------------------------------- 1 | gzip + zstd + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0017/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0017/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0018/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0018/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0018/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0018/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0018/info: -------------------------------------------------------------------------------- 1 | bzip2 + gzip 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0018/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0018/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0019/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0019/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0019/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0019/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0019/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0019/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0019/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0019/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0020/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0020/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0020/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0020/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0020/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0020/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0020/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0020/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0021/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0021/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0021/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0021/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0021/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0021/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0021/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0021/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0022/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0022/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0022/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0022/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0022/info: -------------------------------------------------------------------------------- 1 | bzip2 + xz 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0022/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0022/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0023/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0023/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0023/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0023/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0023/info: -------------------------------------------------------------------------------- 1 | bzip2 + xz + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0023/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0023/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0024/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0024/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0024/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0024/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0024/info: -------------------------------------------------------------------------------- 1 | bzip2 + zstd 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0024/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0024/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0025/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0025/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0025/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0025/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0025/info: -------------------------------------------------------------------------------- 1 | bzip2 + zstd + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0025/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0025/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0026/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0026/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0026/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0026/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0026/info: -------------------------------------------------------------------------------- 1 | xz + gzip 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0026/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0026/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0027/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0027/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0027/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0027/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0027/info: -------------------------------------------------------------------------------- 1 | xz + gzip + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0027/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0027/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0028/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0028/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0028/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0028/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0028/info: -------------------------------------------------------------------------------- 1 | xz + bzip2 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0028/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0028/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0029/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0029/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0029/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0029/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0029/info: -------------------------------------------------------------------------------- 1 | xz + bzip2 + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0029/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0029/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0030/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0030/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0030/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0030/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0030/info: -------------------------------------------------------------------------------- 1 | xz + xz 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0030/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0030/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0031/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0031/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0031/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0031/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0031/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0031/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0031/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0031/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0032/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0032/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0032/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0032/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0032/info: -------------------------------------------------------------------------------- 1 | xz + zstd 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0032/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0032/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0033/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0033/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0033/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0033/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0033/info: -------------------------------------------------------------------------------- 1 | xz + zstd + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0033/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0033/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0034/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0034/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0034/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0034/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0034/info: -------------------------------------------------------------------------------- 1 | zstd + gzip 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0034/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0034/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0035/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0035/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0035/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0035/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0035/info: -------------------------------------------------------------------------------- 1 | zstd + gzip + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0035/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0035/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0036/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0036/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0036/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0036/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0036/info: -------------------------------------------------------------------------------- 1 | zstd + bzip2 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0036/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0036/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0037/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0037/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0037/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0037/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0037/info: -------------------------------------------------------------------------------- 1 | zstd + bzip2 + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0037/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0037/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0038/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0038/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0038/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0038/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0038/info: -------------------------------------------------------------------------------- 1 | zstd + xz 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0038/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0038/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0039/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0039/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0039/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0039/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0039/info: -------------------------------------------------------------------------------- 1 | zstd + xz + cat 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0039/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0039/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0040/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0040/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0040/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0040/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0040/info: -------------------------------------------------------------------------------- 1 | zstd + zstd 2 | -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0040/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0040/run -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0041/data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0041/data.img -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0041/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0041/expect -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0041/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0041/info -------------------------------------------------------------------------------- /utils/initrd-ls/tests/ts0041/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-ls/tests/ts0041/run -------------------------------------------------------------------------------- /utils/initrd-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-parse.c -------------------------------------------------------------------------------- /utils/initrd-parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-parse.h -------------------------------------------------------------------------------- /utils/initrd-put/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/Makefile.mk -------------------------------------------------------------------------------- /utils/initrd-put/elf_dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/elf_dlopen.c -------------------------------------------------------------------------------- /utils/initrd-put/elf_dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/elf_dlopen.h -------------------------------------------------------------------------------- /utils/initrd-put/enqueue-library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/enqueue-library.c -------------------------------------------------------------------------------- /utils/initrd-put/enqueue-shebang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/enqueue-shebang.c -------------------------------------------------------------------------------- /utils/initrd-put/enqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/enqueue.h -------------------------------------------------------------------------------- /utils/initrd-put/initrd-put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/initrd-put.c -------------------------------------------------------------------------------- /utils/initrd-put/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/memory.c -------------------------------------------------------------------------------- /utils/initrd-put/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/memory.h -------------------------------------------------------------------------------- /utils/initrd-put/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/queue.c -------------------------------------------------------------------------------- /utils/initrd-put/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/queue.h -------------------------------------------------------------------------------- /utils/initrd-put/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/tree.c -------------------------------------------------------------------------------- /utils/initrd-put/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-put/tree.h -------------------------------------------------------------------------------- /utils/initrd-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-python.sh -------------------------------------------------------------------------------- /utils/initrd-scanmod/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/Makefile.mk -------------------------------------------------------------------------------- /utils/initrd-scanmod/initrd-scanmod-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/initrd-scanmod-common.c -------------------------------------------------------------------------------- /utils/initrd-scanmod/initrd-scanmod-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/initrd-scanmod-file.c -------------------------------------------------------------------------------- /utils/initrd-scanmod/initrd-scanmod-rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/initrd-scanmod-rules.c -------------------------------------------------------------------------------- /utils/initrd-scanmod/initrd-scanmod-walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/initrd-scanmod-walk.c -------------------------------------------------------------------------------- /utils/initrd-scanmod/initrd-scanmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/initrd-scanmod.c -------------------------------------------------------------------------------- /utils/initrd-scanmod/initrd-scanmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/initrd-scanmod/initrd-scanmod.h -------------------------------------------------------------------------------- /utils/make-initrd/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/make-initrd/Makefile.mk -------------------------------------------------------------------------------- /utils/make-initrd/make-initrd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/make-initrd/make-initrd.in -------------------------------------------------------------------------------- /utils/make-wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/make-wiki.sh -------------------------------------------------------------------------------- /utils/mi-bug-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/mi-bug-report -------------------------------------------------------------------------------- /utils/mkinitrd-make-initrd/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/mkinitrd-make-initrd/Makefile.mk -------------------------------------------------------------------------------- /utils/udev-rules/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/Makefile.mk -------------------------------------------------------------------------------- /utils/udev-rules/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/list.h -------------------------------------------------------------------------------- /utils/udev-rules/list_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/list_sort.c -------------------------------------------------------------------------------- /utils/udev-rules/tests/ts0001-everything-ok/expect: -------------------------------------------------------------------------------- 1 | rc=0 2 | -------------------------------------------------------------------------------- /utils/udev-rules/tests/ts0002-Wdup-match/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/tests/ts0002-Wdup-match/run -------------------------------------------------------------------------------- /utils/udev-rules/udev-goto-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-goto-label.c -------------------------------------------------------------------------------- /utils/udev-rules/udev-rules-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-rules-parser.y -------------------------------------------------------------------------------- /utils/udev-rules/udev-rules-scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-rules-scanner.l -------------------------------------------------------------------------------- /utils/udev-rules/udev-rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-rules.c -------------------------------------------------------------------------------- /utils/udev-rules/udev-rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-rules.h -------------------------------------------------------------------------------- /utils/udev-rules/udev-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-string.c -------------------------------------------------------------------------------- /utils/udev-rules/udev-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osboot/make-initrd/HEAD/utils/udev-rules/udev-string.h --------------------------------------------------------------------------------