├── README.md ├── openwrt-base-files.patch ├── openwrt-kernel-config.patch └── systemd ├── Makefile ├── files └── etc │ ├── hostname │ ├── machine-id │ ├── os-release │ └── systemd │ └── system │ ├── initrd-root-fs.target.requires │ └── sysroot-prepare.service │ ├── overlay.mount │ ├── sysroot-prepare.service │ └── sysroot.mount ├── patches └── 010-agetty-path-baud.patch └── systemd-common.mk /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/README.md -------------------------------------------------------------------------------- /openwrt-base-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/openwrt-base-files.patch -------------------------------------------------------------------------------- /openwrt-kernel-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/openwrt-kernel-config.patch -------------------------------------------------------------------------------- /systemd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/Makefile -------------------------------------------------------------------------------- /systemd/files/etc/hostname: -------------------------------------------------------------------------------- 1 | openwrt 2 | -------------------------------------------------------------------------------- /systemd/files/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systemd/files/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/files/etc/os-release -------------------------------------------------------------------------------- /systemd/files/etc/systemd/system/initrd-root-fs.target.requires/sysroot-prepare.service: -------------------------------------------------------------------------------- 1 | ../sysroot-prepare.service -------------------------------------------------------------------------------- /systemd/files/etc/systemd/system/overlay.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/files/etc/systemd/system/overlay.mount -------------------------------------------------------------------------------- /systemd/files/etc/systemd/system/sysroot-prepare.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/files/etc/systemd/system/sysroot-prepare.service -------------------------------------------------------------------------------- /systemd/files/etc/systemd/system/sysroot.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/files/etc/systemd/system/sysroot.mount -------------------------------------------------------------------------------- /systemd/patches/010-agetty-path-baud.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/patches/010-agetty-path-baud.patch -------------------------------------------------------------------------------- /systemd/systemd-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdub/openwrt-systemd/HEAD/systemd/systemd-common.mk --------------------------------------------------------------------------------