summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 509a93e..77505c6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,11 @@
ver=$(shell date +%Y.%m.%d)
+# mkarchiso flags
+LABEL="Parabola"
+PUBLISHER="Parabola Project"
+APPLICATION="Parabola Live Medium"
+PACCONFIG="overlay/etc/pacman.conf"
+
WORKDIR=work
INSTALL_DIR=arch
COMPRESS=gzip
@@ -21,9 +27,9 @@ core-iso: $(COREname)
net-iso: $(NETname)
$(COREname): core-pkgs base-fs
- mkarchiso -v -D $(INSTALL_DIR) -c $(COMPRESS) iso $(WORKDIR) $@
+ mkarchiso -v -L $(LABEL) -P $(PUBLISHER) -A $(APPLICATION) -D $(INSTALL_DIR) -c $(COMPRESS) iso $(WORKDIR) $@
$(NETname): base-fs
- mkarchiso -v -D $(INSTALL_DIR) -c $(COMPRESS) iso $(WORKDIR) $@
+ mkarchiso -v -L $(LABEL) -P $(PUBLISHER) -A $(APPLICATION) -D $(INSTALL_DIR) -c $(COMPRESS) iso $(WORKDIR) $@
# This is the main rule for make the working filesystem.
base-fs: root-image bootfiles initcpio overlay iso-mounts
@@ -32,8 +38,8 @@ base-fs: root-image bootfiles initcpio overlay iso-mounts
# Rules for make the root-image for base filesystem.
root-image: $(WORKDIR)/root-image/.arch-chroot
$(WORKDIR)/root-image/.arch-chroot:
- mkarchiso -v -D $(INSTALL_DIR) -p base create $(WORKDIR)
- mkarchiso -v -D $(INSTALL_DIR) -p $(PACKAGES) create $(WORKDIR)
+ mkarchiso -v -L $(LABEL) -P $(PUBLISHER) -A $(APPLICATION) -D $(INSTALL_DIR) -p base create $(WORKDIR)
+ mkarchiso -v -L $(LABEL) -P $(PUBLISHER) -A $(APPLICATION) -D $(INSTALL_DIR) -p $(PACKAGES) create $(WORKDIR)
# Rule for make /boot
bootfiles: root-image