
The original image-builder approach had an entirely containerized approach for building target images. This approach was flawed because: 1. There are a number of debian packages which will not install without /sys, /proc, /dev, or /dev/pts mountpoints, and 2. Container build process does not support building with privileges needed to bind-mount these directories into the chroot build space 3. It is a requirement for all packages to be installed in the container image in order to avoid deployment risk of missing mirror resources This patchset addresses this problem by performing necessary privileged steps outside of a containerized build process. At the end of this process, the root filesystem is packaged into a docker container when elevated permissions are no longer required. Change-Id: I5f8dc972f67c5649bf5f9403a5a512d06c948720
59 lines
1.9 KiB
YAML
59 lines
1.9 KiB
YAML
- name: "Stamp out a marker file for grub to use when identifying the desired boot volume"
|
|
copy:
|
|
content: "{{ ansible_date_time.date }}"
|
|
dest: "{{ root_image }}/AIRSHIP"
|
|
|
|
- name: "create directory for boot image assembly"
|
|
tempfile:
|
|
state: directory
|
|
suffix: bootimg
|
|
register: bootimg_builddir
|
|
|
|
- name: "write out grub config"
|
|
template:
|
|
src: grub-livecd.cfg.j2
|
|
dest: "{{ bootimg_builddir.path }}/grub.cfg"
|
|
|
|
- name: "making standalone grub - efi"
|
|
shell:
|
|
cmd: |
|
|
grub-mkstandalone \
|
|
--format=x86_64-efi \
|
|
--output="{{ bootimg_builddir.path }}/bootx64.efi" \
|
|
--locales="" \
|
|
--fonts="" \
|
|
boot/grub/grub.cfg="{{ bootimg_builddir.path }}/grub.cfg"
|
|
|
|
- name: "setup efi filesystem"
|
|
shell:
|
|
cmd: |
|
|
set -e
|
|
cd {{ bootimg_builddir.path }}
|
|
dd if=/dev/zero of=efiboot.img bs=1M count=10
|
|
mkfs.vfat efiboot.img
|
|
LC_CTYPE=C mmd -i efiboot.img efi efi/boot
|
|
LC_CTYPE=C mcopy -i efiboot.img ./bootx64.efi ::efi/boot/
|
|
|
|
- name: "making standalone grub - legacy"
|
|
shell:
|
|
cmd: |
|
|
grub-mkstandalone \
|
|
--format=i386-pc \
|
|
--output="{{ bootimg_builddir.path }}/core.img" \
|
|
--install-modules="linux normal iso9660 biosdisk memdisk search tar ls all_video" \
|
|
--modules="linux normal iso9660 biosdisk search" \
|
|
--locales="" \
|
|
--fonts="" \
|
|
boot/grub/grub.cfg="{{ bootimg_builddir.path }}/grub.cfg"
|
|
|
|
- name: "ensuring directory {{ root_image }}/boot/grub exists"
|
|
file:
|
|
path: "{{ root_image }}/boot/grub"
|
|
state: directory
|
|
mode: '0755'
|
|
- name: "assembling boot img"
|
|
shell:
|
|
cmd: |
|
|
cat /usr/lib/grub/i386-pc/cdboot.img {{ bootimg_builddir.path }}/core.img > {{ root_image }}/boot/grub/bios.img
|
|
cp {{ bootimg_builddir.path }}/efiboot.img {{ root_image }}/boot/grub/efiboot.img
|