Baselayout-2/openrc compatibility and stage4 tarballs.
The first major change here is the support of baselayout-2/openrc. So far Gentoo has not released a stage3 tarball with baselayout-2, but I've tested this enough that I feel it works even when doing an upgrade. The baselayout-1 stuff has been converted, however it is recommended to not use this until baselayout-2 is available in Gentoo stage3s as I don't want to support converting, or you can do this: stage4 tarball support. I'm not sure why I didn't support this before. Now not only can stage4 tarballs be build, instead of or in addition to virtual appliance images, but stage4 tarballs can also be used in lieu of a stage3. There is a new "stage4" make target, and also when building the Makefile will first look for stage4/<appliance>-stage4.tar.bz2 and if that exists use it instead of the Gentoo stage3. If you specify stage4 as a target and also already have a stage4, then the Makefile will unpack the stage4 into the chroot, perform updates, and then re-create the stage4 based on the updates (atomically). In addition there is a new Makefile variable, SOFTWARE. The default value is "1" meaning it will call the software target (thereby installing/updatein software), but if you set SOFTWARE=0, then the software phase will not be run. This can allow, for example, to build a VM image from a stage4 without performing software updates, in effect a straight stage4 to image for quick image building. Since most appliances are pretty much based on the "base" appliance, one could imply copy the base stage4 to the new appliance stage4 and start from there, instead of having to start from a vanilla stage3, for example: # cp stage4/base-stage4.tar.bz2 stage4/kde-stage4.tar.bz2 # make APPLIANCE=kde stage4 Will take the already existing base stage4 and simply update it to kde, which will be easier/faster than starting from a stage3. There are still some tweaks that need to be done for the stage4 support. Specifically Makefile targets need to be written with the assumption that they may be called more than once (e.g. updating a stage4 or going from stage4 to image with SOFTWARE=1). For the most part things work according to that assumption, but there are a few things that need to be tweeked, such as the inittab settings if one is building a "headed" image but it's based off a headless stage4. New appliance authors should also write their "preinstall" and "postinstall" targets with the assmption that it may be called more than once.
This commit is contained in:
parent
331a28bd11
commit
df1d7650d8
|
@ -1,5 +1,6 @@
|
||||||
vabuild\/.*
|
vabuild\/.*
|
||||||
loop\/.*
|
loop\/.*
|
||||||
|
^stage4
|
||||||
.*\.swp$
|
.*\.swp$
|
||||||
.*\.cfg
|
.*\.cfg
|
||||||
latest-stage3\.txt
|
latest-stage3\.txt
|
||||||
|
|
89
Makefile
89
Makefile
|
@ -4,6 +4,7 @@ HOSTNAME = $(APPLIANCE)
|
||||||
RAW_IMAGE = $(HOSTNAME).img
|
RAW_IMAGE = $(HOSTNAME).img
|
||||||
QCOW_IMAGE = $(HOSTNAME).qcow
|
QCOW_IMAGE = $(HOSTNAME).qcow
|
||||||
VMDK_IMAGE = $(HOSTNAME).vmdk
|
VMDK_IMAGE = $(HOSTNAME).vmdk
|
||||||
|
STAGE4_TARBALL = stage4/$(HOSTNAME)-stage4.tar.bz2
|
||||||
KERNEL_CONFIG = kernel.config
|
KERNEL_CONFIG = kernel.config
|
||||||
VIRTIO = NO
|
VIRTIO = NO
|
||||||
TIMEZONE = UTC
|
TIMEZONE = UTC
|
||||||
|
@ -19,6 +20,7 @@ CHANGE_PASSWORD = YES
|
||||||
HEADLESS = NO
|
HEADLESS = NO
|
||||||
EXTERNAL_KERNEL = NO
|
EXTERNAL_KERNEL = NO
|
||||||
UDEV = YES
|
UDEV = YES
|
||||||
|
SOFTWARE = 1
|
||||||
ACCEPT_KEYWORDS = amd64
|
ACCEPT_KEYWORDS = amd64
|
||||||
DASH = NO
|
DASH = NO
|
||||||
|
|
||||||
|
@ -34,10 +36,15 @@ PACKAGE_FILES = $(APPLIANCE)/package.*
|
||||||
WORLD = $(APPLIANCE)/world
|
WORLD = $(APPLIANCE)/world
|
||||||
CRITICAL = $(APPLIANCE)/critical
|
CRITICAL = $(APPLIANCE)/critical
|
||||||
|
|
||||||
|
-include $(APPLIANCE)/$(APPLIANCE).cfg
|
||||||
-include $(profile).cfg
|
-include $(profile).cfg
|
||||||
|
|
||||||
inroot := chroot $(CHROOT)
|
inroot := chroot $(CHROOT)
|
||||||
|
|
||||||
|
ifneq ($(SOFTWARE),0)
|
||||||
|
software_extra = build-software
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(PKGDIR),)
|
ifneq ($(PKGDIR),)
|
||||||
MOUNT_PKGDIR = mkdir -p $(CHROOT)/var/portage/packages; \
|
MOUNT_PKGDIR = mkdir -p $(CHROOT)/var/portage/packages; \
|
||||||
mount -o bind "$(PKGDIR)" $(CHROOT)/var/portage/packages
|
mount -o bind "$(PKGDIR)" $(CHROOT)/var/portage/packages
|
||||||
|
@ -46,11 +53,11 @@ ifneq ($(PKGDIR),)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(PRUNE_CRITICAL),YES)
|
ifeq ($(PRUNE_CRITICAL),YES)
|
||||||
COPY_LOOP = rsync -ax --exclude-from=rsync-excludes \
|
COPY_ARGS = --exclude-from=rsync-excludes \
|
||||||
--exclude-from=rsync-excludes-critical gentoo/ loop/
|
--exclude-from=rsync-excludes-critical
|
||||||
UNMERGE_CRITICAL = $(inroot) $(EMERGE) -C `cat $(CRITICAL)`
|
UNMERGE_CRITICAL = $(inroot) $(EMERGE) -C `cat $(CRITICAL)`
|
||||||
else
|
else
|
||||||
COPY_LOOP = rsync -ax --exclude-from=rsync-excludes gentoo/ loop/
|
COPY_ARGS = --exclude-from=rsync-excludes
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CHANGE_PASSWORD),YES)
|
ifeq ($(CHANGE_PASSWORD),YES)
|
||||||
|
@ -62,7 +69,7 @@ ifeq ($(CHANGE_PASSWORD),YES)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(REMOVE_PORTAGE_TREE),YES)
|
ifeq ($(REMOVE_PORTAGE_TREE),YES)
|
||||||
COPY_LOOP += --exclude=usr/portage
|
COPY_ARGS += --exclude=usr/portage
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(VIRTIO),YES)
|
ifeq ($(VIRTIO),YES)
|
||||||
|
@ -76,7 +83,7 @@ ifeq ($(HEADLESS),YES)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ENABLE_SSHD),YES)
|
ifeq ($(ENABLE_SSHD),YES)
|
||||||
enable_sshd = $(inroot) rc-update add sshd default
|
enable_sshd = $(inroot) /sbin/rc-update add sshd default
|
||||||
endif
|
endif
|
||||||
|
|
||||||
gcc_config = $(inroot) gcc-config 1
|
gcc_config = $(inroot) gcc-config 1
|
||||||
|
@ -121,13 +128,17 @@ portage: sync_portage stage3
|
||||||
|
|
||||||
preproot: stage3 mounts portage
|
preproot: stage3 mounts portage
|
||||||
cp -L /etc/resolv.conf $(CHROOT)/etc/
|
cp -L /etc/resolv.conf $(CHROOT)/etc/
|
||||||
|
$(inroot) sed -i 's/root:.*/root::9797:0:::::/' /etc/shadow
|
||||||
touch preproot
|
touch preproot
|
||||||
|
|
||||||
stage3:
|
stage3:
|
||||||
mkdir -p $(CHROOT)
|
mkdir -p $(CHROOT)
|
||||||
rsync --no-motd $(RSYNC_MIRROR)/releases/`echo $(ARCH)|sed 's/i.86/x86/'`/autobuilds/latest-stage3.txt .
|
if test -e "$(STAGE4_TARBALL)"; \
|
||||||
rsync --no-motd $(RSYNC_MIRROR)/releases/`echo $(ARCH)|sed 's/i.86/x86/'`/autobuilds/`tail -n 1 latest-stage3.txt` stage3-$(ARCH)-latest.tar.bz2
|
then tar xjpf "$(STAGE4_TARBALL)" -C $(CHROOT); \
|
||||||
tar xjpf stage3-$(ARCH)-latest.tar.bz2 -C $(CHROOT)
|
else rsync --no-motd $(RSYNC_MIRROR)/releases/`echo $(ARCH)|sed 's/i.86/x86/'`/autobuilds/latest-stage3.txt .; \
|
||||||
|
rsync --no-motd $(RSYNC_MIRROR)/releases/`echo $(ARCH)|sed 's/i.86/x86/'`/autobuilds/`tail -n 1 latest-stage3.txt` stage3-$(ARCH)-latest.tar.bz2; \
|
||||||
|
tar xjpf stage3-$(ARCH)-latest.tar.bz2 -C $(CHROOT); \
|
||||||
|
fi
|
||||||
touch stage3
|
touch stage3
|
||||||
|
|
||||||
compile_options: portage make.conf locale.gen $(PACKAGE_FILES)
|
compile_options: portage make.conf locale.gen $(PACKAGE_FILES)
|
||||||
|
@ -147,6 +158,7 @@ base_system: mounts compile_options
|
||||||
|
|
||||||
kernel: base_system $(KERNEL_CONFIG)
|
kernel: base_system $(KERNEL_CONFIG)
|
||||||
$(inroot) cp /usr/share/zoneinfo/$(TIMEZONE) /etc/localtime
|
$(inroot) cp /usr/share/zoneinfo/$(TIMEZONE) /etc/localtime
|
||||||
|
echo $(TIMEZONE) > "$(CHROOT)"/etc/timezone
|
||||||
ifneq ($(EXTERNAL_KERNEL),YES)
|
ifneq ($(EXTERNAL_KERNEL),YES)
|
||||||
$(inroot) $(EMERGE) -n $(USEPKG) sys-kernel/$(KERNEL)
|
$(inroot) $(EMERGE) -n $(USEPKG) sys-kernel/$(KERNEL)
|
||||||
cp $(KERNEL_CONFIG) $(CHROOT)/usr/src/linux/.config
|
cp $(KERNEL_CONFIG) $(CHROOT)/usr/src/linux/.config
|
||||||
|
@ -169,38 +181,43 @@ $(CHROOT)/etc/fstab: fstab preproot
|
||||||
cp fstab $(CHROOT)/etc/fstab
|
cp fstab $(CHROOT)/etc/fstab
|
||||||
|
|
||||||
$(CHROOT)/etc/conf.d/hostname: preproot
|
$(CHROOT)/etc/conf.d/hostname: preproot
|
||||||
echo HOSTNAME=$(HOSTNAME) > $(CHROOT)/etc/conf.d/hostname
|
echo hostname=$(HOSTNAME) > $(CHROOT)/etc/conf.d/hostname
|
||||||
|
|
||||||
$(CHROOT)/etc/conf.d/clock: preproot
|
sysconfig: preproot $(SWAP_FILE) $(CHROOT)/etc/fstab $(CHROOT)/etc/conf.d/hostname
|
||||||
sed -i 's/^#TIMEZONE=.*/TIMEZONE="$(TIMEZONE)"/' $(CHROOT)/etc/conf.d/clock
|
|
||||||
|
|
||||||
sysconfig: preproot $(SWAP_FILE) $(CHROOT)/etc/fstab $(CHROOT)/etc/conf.d/hostname $(CHROOT)/etc/conf.d/clock
|
|
||||||
@echo $(VIRTIO)
|
@echo $(VIRTIO)
|
||||||
$(VIRTIO_FSTAB)
|
$(VIRTIO_FSTAB)
|
||||||
|
ifeq ($(VIRTIO),YES)
|
||||||
|
sed -i 's:clock_hctosys="YES":clock_hctosys="NO":g' "$(CHROOT)/etc/conf.d/hwclock"
|
||||||
|
sed -i '/^rc_sys=/d' "$(CHROOT)/etc/rc.conf"
|
||||||
|
echo 'rc_sys=""' >> "$(CHROOT)/etc/rc.conf"
|
||||||
|
endif
|
||||||
sed -i 's/^#s0:/s0:/' $(CHROOT)/etc/inittab
|
sed -i 's/^#s0:/s0:/' $(CHROOT)/etc/inittab
|
||||||
$(HEADLESS_INITTAB)
|
$(HEADLESS_INITTAB)
|
||||||
echo 'modules=( "dhclient" )' > $(CHROOT)/etc/conf.d/net
|
echo 'modules="dhclient"' > $(CHROOT)/etc/conf.d/net
|
||||||
echo 'config_eth0=( "dhcp" )' >> $(CHROOT)/etc/conf.d/net
|
echo 'config_eth0="dhcp"' >> $(CHROOT)/etc/conf.d/net
|
||||||
echo 'dhcp_eth0="release"' >> $(CHROOT)/etc/conf.d/net
|
echo 'dhcp_eth0="release"' >> $(CHROOT)/etc/conf.d/net
|
||||||
$(inroot) ln -nsf net.lo /etc/init.d/net.eth0
|
$(inroot) ln -nsf net.lo /etc/init.d/net.eth0
|
||||||
$(inroot) rc-update add net.eth0 default
|
$(inroot) ln -nsf /etc/init.d/net.eth0 /etc/runlevels/default/net.eth0
|
||||||
$(inroot) rc-update del consolefont boot
|
$(inroot) rm -f /etc/runlevels/boot/consolefont
|
||||||
touch sysconfig
|
touch sysconfig
|
||||||
|
|
||||||
systools: sysconfig compile_options
|
systools: sysconfig compile_options
|
||||||
$(inroot) $(EMERGE) -n $(USEPKG) app-admin/syslog-ng
|
$(inroot) $(EMERGE) -n $(USEPKG) app-admin/syslog-ng
|
||||||
$(inroot) rc-update add syslog-ng default
|
$(inroot) /sbin/rc-update add syslog-ng default
|
||||||
$(inroot) $(EMERGE) -n $(USEPKG) sys-power/acpid
|
$(inroot) $(EMERGE) -n $(USEPKG) sys-power/acpid
|
||||||
$(inroot) rc-update add acpid default
|
$(inroot) /sbin/rc-update add acpid default
|
||||||
$(inroot) $(EMERGE) -n $(USEPKG) net-misc/dhcp
|
$(inroot) $(EMERGE) -n $(USEPKG) net-misc/dhcp
|
||||||
ifeq ($(DASH),YES)
|
ifeq ($(DASH),YES)
|
||||||
$(inroot) $(EMERGE) -n $(USEPKG) app-shells/dash
|
if ! test -e "$(STAGE4_TARBALL)"; \
|
||||||
echo /bin/dash >> $(CHROOT)/etc/shells
|
then $(inroot) $(EMERGE) -n $(USEPKG) app-shells/dash; \
|
||||||
$(inroot) chsh -s /bin/dash root
|
echo /bin/dash >> $(CHROOT)/etc/shells; \
|
||||||
|
$(inroot) chsh -s /bin/dash root; \
|
||||||
|
fi
|
||||||
endif
|
endif
|
||||||
|
$(inroot) ln -sf dash /bin/sh
|
||||||
touch systools
|
touch systools
|
||||||
|
|
||||||
grub: systools grub.conf kernel
|
grub: stage3 grub.conf kernel partitions
|
||||||
ifneq ($(EXTERNAL_KERNEL),YES)
|
ifneq ($(EXTERNAL_KERNEL),YES)
|
||||||
$(inroot) $(EMERGE) -nN $(USEPKG) sys-boot/grub
|
$(inroot) $(EMERGE) -nN $(USEPKG) sys-boot/grub
|
||||||
cp grub.conf $(CHROOT)/boot/grub/grub.conf
|
cp grub.conf $(CHROOT)/boot/grub/grub.conf
|
||||||
|
@ -209,7 +226,7 @@ ifneq ($(EXTERNAL_KERNEL),YES)
|
||||||
endif
|
endif
|
||||||
touch grub
|
touch grub
|
||||||
|
|
||||||
software: systools issue etc-update.conf $(CRITICAL) $(WORLD)
|
build-software: systools issue etc-update.conf $(CRITICAL) $(WORLD)
|
||||||
$(MAKE) -C $(APPLIANCE) preinstall
|
$(MAKE) -C $(APPLIANCE) preinstall
|
||||||
cp etc-update.conf $(CHROOT)/etc/
|
cp etc-update.conf $(CHROOT)/etc/
|
||||||
|
|
||||||
|
@ -236,17 +253,19 @@ software: systools issue etc-update.conf $(CRITICAL) $(WORLD)
|
||||||
$(enable_sshd)
|
$(enable_sshd)
|
||||||
$(change_password)
|
$(change_password)
|
||||||
$(UNMERGE_CRITICAL)
|
$(UNMERGE_CRITICAL)
|
||||||
|
|
||||||
|
software: stage3 $(software_extra)
|
||||||
touch software
|
touch software
|
||||||
|
|
||||||
device-map: $(RAW_IMAGE)
|
device-map: $(RAW_IMAGE)
|
||||||
echo '(hd0) ' $(RAW_IMAGE) > device-map
|
echo '(hd0) ' $(RAW_IMAGE) > device-map
|
||||||
|
|
||||||
image: $(RAW_IMAGE) grub partitions device-map grub.shell systools software
|
image: software device-map grub.shell grub
|
||||||
mkdir -p loop
|
mkdir -p loop
|
||||||
mount -o noatime $(NBD_DEV)p1 loop
|
mount -o noatime $(NBD_DEV)p1 loop
|
||||||
mkdir -p gentoo
|
mkdir -p gentoo
|
||||||
mount -o bind $(CHROOT) gentoo
|
mount -o bind $(CHROOT) gentoo
|
||||||
$(COPY_LOOP)
|
rsync -ax $(COPY_ARGS) gentoo/ loop/
|
||||||
ifneq ($(EXTERNAL_KERNEL),YES)
|
ifneq ($(EXTERNAL_KERNEL),YES)
|
||||||
loop/sbin/grub --device-map=device-map --no-floppy --batch < grub.shell
|
loop/sbin/grub --device-map=device-map --no-floppy --batch < grub.shell
|
||||||
endif
|
endif
|
||||||
|
@ -256,7 +275,7 @@ ifeq ($(UDEV),NO)
|
||||||
/bin/mknod loop/dev/vda1 b 254 1
|
/bin/mknod loop/dev/vda1 b 254 1
|
||||||
/bin/mknod loop/dev/vda2 b 254 2
|
/bin/mknod loop/dev/vda2 b 254 2
|
||||||
chown root:disk loop/dev/vda*
|
chown root:disk loop/dev/vda*
|
||||||
sed -i 's/RC_DEVICES="auto"/RC_DEVICES="static"/' loop/etc/conf.d/rc
|
rm -f loop/etc/runlevels/sysinit/udev
|
||||||
endif
|
endif
|
||||||
umount gentoo
|
umount gentoo
|
||||||
rmdir gentoo
|
rmdir gentoo
|
||||||
|
@ -277,6 +296,18 @@ $(VMDK_IMAGE): $(RAW_IMAGE) image
|
||||||
|
|
||||||
vmdk: $(VMDK_IMAGE)
|
vmdk: $(VMDK_IMAGE)
|
||||||
|
|
||||||
|
$(STAGE4_TARBALL): software kernel rsync-excludes rsync-excludes-critical
|
||||||
|
mkdir -p stage4
|
||||||
|
mkdir -p gentoo
|
||||||
|
mount -o bind $(CHROOT) gentoo
|
||||||
|
tar -jScf "$(STAGE4_TARBALL)".tmp --numeric-owner $(COPY_ARGS) -C gentoo --one-file-system .
|
||||||
|
umount gentoo
|
||||||
|
rmdir gentoo
|
||||||
|
mv "$(STAGE4_TARBALL)".tmp "$(STAGE4_TARBALL)"
|
||||||
|
|
||||||
|
stage4: $(STAGE4_TARBALL)
|
||||||
|
|
||||||
|
|
||||||
umount:
|
umount:
|
||||||
$(UMOUNT_PKGDIR)
|
$(UMOUNT_PKGDIR)
|
||||||
umount $(CHROOT)/var/tmp
|
umount $(CHROOT)/var/tmp
|
||||||
|
@ -300,6 +331,8 @@ realclean: clean
|
||||||
distclean:
|
distclean:
|
||||||
rm -f *.qcow *.img *.vmdk
|
rm -f *.qcow *.img *.vmdk
|
||||||
rm -f latest-stage3.txt stage3-*-latest.tar.bz2
|
rm -f latest-stage3.txt stage3-*-latest.tar.bz2
|
||||||
|
rm -f *-stage4.tar.bz2
|
||||||
rm -f portage-latest.tar.bz2
|
rm -f portage-latest.tar.bz2
|
||||||
|
|
||||||
.PHONY: qcow vmdk clean realclean distclean remove_checkpoints
|
.PHONY: qcow vmdk clean realclean distclean remove_checkpoints build-software
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue