mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
14 lines
431 B
Makefile
14 lines
431 B
Makefile
################################################################################
|
|
#
|
|
# tinyinit
|
|
#
|
|
################################################################################
|
|
|
|
define TINYINIT_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(TINYINIT_PKGDIR)/init $(TARGET_DIR)/sbin/init
|
|
# Downside: In non-initramfs systems the symlink isn't used/needed
|
|
(cd $(TARGET_DIR); ln -sf /sbin/init init)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|