Bring more sysa artifacts over into sysc (including the Linux kernel)

This commit is contained in:
Googulator 2023-11-13 10:24:30 +01:00
parent 5bd1bad62e
commit 0bd2089010
2 changed files with 7 additions and 0 deletions

View file

@ -19,8 +19,11 @@ create_sysb() {
echo "Creating sysb rootfs" echo "Creating sysb rootfs"
sys_transfer /sysb_image /sysb gzip patch sys_transfer /sysb_image /sysb gzip patch
cp -rl /sysc /sysb_image/sysc_src cp -rl /sysc /sysb_image/sysc_src
tar -cvf - --exclude='sysb' --exclude='sysc' --exclude='sysb_image' / | bzip2 > /sysb_image/sysa.tar.bz2
ls -la /sysb_image/sysa.tar.bz2
echo "Creating sysb initramfs" echo "Creating sysb initramfs"
gen_initramfs_list.sh -o "/boot/initramfs-sysb.cpio.gz" /sysb_image gen_initramfs_list.sh -o "/boot/initramfs-sysb.cpio.gz" /sysb_image
ls -l "/boot/initramfs-sysb.cpio.gz"
rm -rf /sysb /sysb_image # Cleanup rm -rf /sysb /sysb_image # Cleanup
} }
@ -92,7 +95,10 @@ mkdir -p /sysc/distfiles
cp "${DISTFILES}"/curl-7.88.1.tar.bz2 /sysc/distfiles cp "${DISTFILES}"/curl-7.88.1.tar.bz2 /sysc/distfiles
# Clear up some RAM space # Clear up some RAM space
tar -cvf - --exclude="${DISTFILES}" "${SOURCES}" | bzip2 > /sysc/sysa_saved.tar.bz2
ls -l /sysc/sysa_saved.tar.bz2
grep --no-filename '^build' "${SOURCES}"/run*.sh | grep -v musl-1.2.4 | sed "s/build //" | sed "s/ .*$//" | while read -r p ; do grep --no-filename '^build' "${SOURCES}"/run*.sh | grep -v musl-1.2.4 | sed "s/build //" | sed "s/ .*$//" | while read -r p ; do
echo rm -rf "${SOURCES:?}/${p:?}"
rm -rf "${SOURCES:?}/${p:?}" rm -rf "${SOURCES:?}/${p:?}"
done done

View file

@ -88,6 +88,7 @@ mount -t ext4 "/dev/${DISK}" /sysc
# Copy over appropriate data # Copy over appropriate data
echo "Copying data into sysc" echo "Copying data into sysc"
sys_transfer "${SYSC}" /sysc_src gzip patch sys_transfer "${SYSC}" /sysc_src gzip patch
cp -r /sysa.tar.bz2 /sysc/sysa.tar.bz2
sync sync
# switch_root into sysc 1. for simplicity 2. to avoid kexecing again # switch_root into sysc 1. for simplicity 2. to avoid kexecing again