23b12f0dde
Rewrite the Makefile to avoid rebuild of squashfs images, base filesystem, and redownload of packages for make the core-pkgs. For now (what is tested): type make and all images will be created in < 4 minutes (under tmpfs on Athlon 64 X2 5200+ 4GB) 419489280 Nov 19 05:32 archlinux-2009.11-core-i686.img 394309632 Nov 19 05:32 archlinux-2009.11-core-i686.iso 189181440 Nov 19 05:31 archlinux-2009.11-netinstall-i686.img 171581440 Nov 19 05:31 archlinux-2009.11-netinstall-i686.iso Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
91 lines
2.9 KiB
Makefile
91 lines
2.9 KiB
Makefile
ver=2009.11
|
|
kver=2.6.31-ARCH
|
|
|
|
WORKDIR=work
|
|
|
|
ARCH?=$(shell uname -m)
|
|
BOOTLOADER?=grub-gfx
|
|
|
|
PWD=$(shell pwd)
|
|
NETname=$(PWD)/archlinux-$(ver)-netinstall-$(ARCH)
|
|
COREname=$(PWD)/archlinux-$(ver)-core-$(ARCH)
|
|
|
|
PACKAGES="$(shell cat packages.$(ARCH)) $(BOOTLOADER)"
|
|
|
|
all: all-net all-core
|
|
all-iso: net-iso core-iso
|
|
all-usb: net-usb core-usb
|
|
all-net: net-iso net-usb
|
|
all-core: core-iso core-usb
|
|
|
|
net-iso: $(NETname).iso
|
|
net-usb: $(NETname).img
|
|
core-iso: $(COREname).iso
|
|
core-usb: $(COREname).img
|
|
|
|
# Rules for each type of image
|
|
$(COREname).iso: core-pkgs base-fs $(BOOTLOADER)
|
|
mkarchiso -p $(BOOTLOADER) iso $(WORKDIR) $@
|
|
$(COREname).img: core-pkgs base-fs $(BOOTLOADER)
|
|
mkarchiso -p $(BOOTLOADER) usb $(WORKDIR) $@
|
|
$(NETname).iso: base-fs $(BOOTLOADER)
|
|
mkarchiso -p $(BOOTLOADER) iso $(WORKDIR) $@
|
|
$(NETname).img: base-fs $(BOOTLOADER)
|
|
mkarchiso -p $(BOOTLOADER) usb $(WORKDIR) $@
|
|
|
|
base-fs: boot-files initcpio overlay iso-mounts
|
|
# Rule for make /boot
|
|
boot-files: root-image
|
|
cp -r $(WORKDIR)/root-image/boot $(WORKDIR)/iso/
|
|
cp $(WORKDIR)/root-image/usr/share/licenses/common/GPL2/license.txt $(WORKDIR)/iso/boot/memtest86+/memtest.bin.COPYING
|
|
cp -r boot-files/* $(WORKDIR)/iso/boot/
|
|
|
|
# Rule to process isomounts file.
|
|
iso-mounts: $(WORKDIR)/isomounts
|
|
$(WORKDIR)/isomounts: isomounts root-image
|
|
sed "s|@ARCH@|$(ARCH)|g" $< > $@
|
|
|
|
# Rules for make the root-image for base filesystem.
|
|
root-image: $(WORKDIR)/root-image/.arch-chroot
|
|
$(WORKDIR)/root-image/.arch-chroot:
|
|
mkarchiso -p $(PACKAGES) create $(WORKDIR)
|
|
|
|
# Rules for initcpio images
|
|
initcpio: $(WORKDIR)/iso/boot/archiso_ide.img $(WORKDIR)/iso/boot/archiso_pata.img
|
|
$(WORKDIR)/iso/boot/archiso_ide.img: initcpio-ide root-image
|
|
mkinitcpio -c ./initcpio-ide -b $(WORKDIR)/root-image -k $(kver) -g $@
|
|
$(WORKDIR)/iso/boot/archiso_pata.img: initcpio-pata root-image
|
|
mkinitcpio -c ./initcpio-pata -b $(WORKDIR)/root-image -k $(kver) -g $@
|
|
|
|
# overlay filesystem
|
|
overlay:
|
|
cp -r overlay $(WORKDIR)/
|
|
if [ ! -d $(WORKDIR)/overlay/etc/pacman.d ]; then \
|
|
mkdir -m755 $(WORKDIR)/overlay/etc/pacman.d; \
|
|
fi
|
|
wget -O $(WORKDIR)/overlay/etc/pacman.d/mirrorlist http://www.archlinux.org/mirrorlist/$(ARCH)/all/
|
|
sed -i "s/#Server/Server/g" $(WORKDIR)/overlay/etc/pacman.d/mirrorlist
|
|
|
|
# Rule for make the core repo packages
|
|
core-pkgs:
|
|
./download-repo.sh core $(WORKDIR)/core-pkgs
|
|
|
|
# Bootloaders
|
|
grub-gfx:
|
|
cp -r $(WORKDIR)/root-image/usr/lib/grub/i386-pc/* $(WORKDIR)/iso/boot/grub
|
|
grub:
|
|
cp -r $(WORKDIR)/root-image/usr/lib/grub/i386-pc/* $(WORKDIR)/iso/boot/grub
|
|
syslinux:
|
|
cp -r $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/isolinux
|
|
|
|
# Clean-up all work
|
|
clean:
|
|
rm -rf $(WORKDIR) $(NETname).img $(NETname).iso $(COREname).img $(COREname).iso
|
|
|
|
|
|
.PHONY: all all-iso all-usb all-net all-core
|
|
.PHONY: net-iso net-usb core-iso core-usb
|
|
.PHONY: base-fs boot-files iso-mounts root-image initcpio overlay core-pkgs
|
|
.PHONY: grub-gfx grub syslinux
|
|
.PHONY: clean
|