5e72595a73
We should take advantage of the latest tinycore image version to build ipa ramdisks, just to be able to use kernel from series 5.x Depends-On: https://review.opendev.org/739448 Depends-On: https://review.opendev.org/756353 Story: 2007855 Task: 40158 Change-Id: I852aeac090bb38dbb20f8484e191ba76b42c9dd9
40 lines
974 B
Bash
Executable File
40 lines
974 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
WORKDIR=$(readlink -f $0 | xargs dirname)
|
|
DST_DIR=$(mktemp -d)
|
|
source ${WORKDIR}/common.sh
|
|
PARTIMG="$WORKDIR/tiny-instance-part${BRANCH_EXT}.img"
|
|
UECFILE="$WORKDIR/tiny-instance-uec${BRANCH_EXT}.tar.gz"
|
|
fs_type='ext4'
|
|
|
|
sudo rm -rf $PARTIMG $UECFILE
|
|
sudo truncate --size=150M $PARTIMG
|
|
|
|
sudo mkfs."${fs_type}" -F "$PARTIMG" -L "root"
|
|
sudo mount -o loop "$PARTIMG" "$DST_DIR/"
|
|
|
|
# Extract rootfs from .gz file
|
|
( cd "$DST_DIR" && zcat $WORKDIR/build_files/corepure64.gz | sudo cpio -i -H newc -d )
|
|
|
|
setup_tce $DST_DIR
|
|
|
|
# NOTE(rpittau) change ownership of the tce info dir to prevent writing issues
|
|
sudo chown $TC:$STAFF $DST_DIR/usr/local/tce.installed
|
|
|
|
$TC_CHROOT_CMD tce-load -wci grub2-multi.tcz
|
|
|
|
cleanup_tce $DST_DIR
|
|
sudo umount $DST_DIR/
|
|
|
|
pushd $DST_DIR/
|
|
cp $WORKDIR/tinyipa${BRANCH_EXT}.gz $DST_DIR/tinyipa-initrd
|
|
cp $WORKDIR/tinyipa${BRANCH_EXT}.vmlinuz $DST_DIR/tinyipa-vmlinuz
|
|
cp $PARTIMG $DST_DIR/
|
|
|
|
tar -czf $UECFILE ./
|
|
|
|
popd
|
|
|
|
sudo rm -rf $DST_DIR
|