85d243ff58
* Use device mapper + snapshot module, instead union layer filesystem. * A block-level approach vs vfs-level. * No more unofficial (Linux) things. * More memory is needed. * Refactor mkarchiso. * Refactor hooks/archiso. * Fix install/archiso_pxe_nbd (due recent change in mkinitcpio-0.6.15 on checked_modules()/all_modules()) [Thanks Dave for the improved workaround] * New configs/releng to build official images. * Works with a Bash script instead of Makefile. (better control and easy to maintain) * Remove configs/syslinux-iso. * Remove archiso2dual script. Integrate functionality in configs/releng. * New configs/baseline to build the most basic live medium or use as template. * New README (draft). [Thanks Dieter for fixing english grammar] Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
37 lines
1.5 KiB
Makefile
37 lines
1.5 KiB
Makefile
all:
|
|
|
|
install: install-program install-examples install-doc
|
|
|
|
install-program:
|
|
# install to sbin since script only usable by root
|
|
install -D -m 755 mkarchiso $(DESTDIR)/usr/sbin/mkarchiso
|
|
# testiso can be used by anyone
|
|
install -D -m 755 testiso $(DESTDIR)/usr/bin/testiso
|
|
# hooks/install are needed by mkinitcpio
|
|
install -D -m 644 hooks/archiso $(DESTDIR)/lib/initcpio/hooks/archiso
|
|
install -D -m 644 install/archiso $(DESTDIR)/lib/initcpio/install/archiso
|
|
install -D -m 644 hooks/archiso_pxe_nbd $(DESTDIR)/lib/initcpio/hooks/archiso_pxe_nbd
|
|
install -D -m 644 install/archiso_pxe_nbd $(DESTDIR)/lib/initcpio/install/archiso_pxe_nbd
|
|
install -D -m 644 hooks/archiso_loop_mnt $(DESTDIR)/lib/initcpio/hooks/archiso_loop_mnt
|
|
install -D -m 644 install/archiso_loop_mnt $(DESTDIR)/lib/initcpio/install/archiso_loop_mnt
|
|
|
|
install-examples:
|
|
# install examples
|
|
install -d -m 755 $(DESTDIR)/usr/share/archiso/
|
|
cp -r ../configs $(DESTDIR)/usr/share/archiso/configs
|
|
|
|
install-doc:
|
|
install -d -m 755 $(DESTDIR)/usr/share/archiso/
|
|
install -D -m 644 ../README $(DESTDIR)/usr/share/doc/archiso/README
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)/usr/sbin/mkarchiso
|
|
rm -f $(DESTDIR)/usr/bin/testiso
|
|
rm -f $(DESTDIR)/lib/initcpio/hooks/archiso
|
|
rm -f $(DESTDIR)/lib/initcpio/install/archiso
|
|
rm -f $(DESTDIR)/lib/initcpio/hooks/archiso_pxe_nbd
|
|
rm -f $(DESTDIR)/lib/initcpio/install/archiso_pxe_nbd
|
|
rm -rf $(DESTDIR)/usr/share/archiso/
|
|
|
|
.PHONY: install install-program install-examples install-doc uninstall
|