it builds but doesn't boot all the way!
bugs that need fixed: stateful lsb-factory, bootstrapping rootfs
This commit is contained in:
parent
e8b6a73f87
commit
870c554fdb
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"editor.largeFileOptimizations": true
|
||||||
|
}
|
BIN
builder/bins/cgpt.x86-64
Executable file
BIN
builder/bins/cgpt.x86-64
Executable file
Binary file not shown.
BIN
builder/bins/sfdisk.x86-64
Executable file
BIN
builder/bins/sfdisk.x86-64
Executable file
Binary file not shown.
BIN
builder/bootstrap/bin/bash
Normal file
BIN
builder/bootstrap/bin/bash
Normal file
Binary file not shown.
@ -10,7 +10,6 @@ run_binwalk() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#extract the initramfs from a kernel image
|
|
||||||
extract_initramfs() {
|
extract_initramfs() {
|
||||||
local kernel_bin="$1"
|
local kernel_bin="$1"
|
||||||
local working_dir="$2"
|
local working_dir="$2"
|
||||||
@ -76,7 +75,8 @@ copy_kernel() {
|
|||||||
local shim_loop=$(create_loop "${shim_path}")
|
local shim_loop=$(create_loop "${shim_path}")
|
||||||
local kernel_loop="${shim_loop}p2" #KERN-A should always be p2
|
local kernel_loop="${shim_loop}p2" #KERN-A should always be p2
|
||||||
dd if=$kernel_loop of=$kernel_dir/kernel.bin bs=1M status=none
|
dd if=$kernel_loop of=$kernel_dir/kernel.bin bs=1M status=none
|
||||||
losetup -d $shim_loop
|
dd if=$kernel_loop of="/tmp/kernel.bin" bs=1M status=none
|
||||||
|
# losetup -d $shim_loop
|
||||||
}
|
}
|
||||||
|
|
||||||
#copy the kernel image then extract the initramfs
|
#copy the kernel image then extract the initramfs
|
||||||
@ -99,6 +99,7 @@ extract_initramfs_full() {
|
|||||||
extract_initramfs $kernel_dir/kernel.bin $kernel_dir $rootfs_dir
|
extract_initramfs $kernel_dir/kernel.bin $kernel_dir $rootfs_dir
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ "$kernel_bin" ]; then
|
if [ "$kernel_bin" ]; then
|
||||||
cp $kernel_dir/kernel.bin $kernel_bin
|
cp $kernel_dir/kernel.bin $kernel_bin
|
||||||
fi
|
fi
|
||||||
|
@ -2,6 +2,35 @@
|
|||||||
# Code was borrowed from the SH1mmer repo, credits to them
|
# Code was borrowed from the SH1mmer repo, credits to them
|
||||||
# https://github.com/MercuryWorkshop/sh1mmer
|
# https://github.com/MercuryWorkshop/sh1mmer
|
||||||
|
|
||||||
|
get_sector_size() {
|
||||||
|
"$SFDISK" -l "$1" | grep "Sector size" | awk '{print $4}'
|
||||||
|
}
|
||||||
|
|
||||||
|
get_final_sector() {
|
||||||
|
"$SFDISK" -l -o end "$1" | grep "^\s*[0-9]" | awk '{print $1}' | sort -nr | head -n 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# create_stateful(){
|
||||||
|
# local final_sector=$(get_final_sector "$loopdev")
|
||||||
|
# local sector_size=$(get_sector_size "$loopdev")
|
||||||
|
# # special UUID is from grunt shim, dunno if this is different on other shims
|
||||||
|
# "$CGPT" add "$loopdev" -i 1 -b $((final_sector + 1)) -s $((state_size / sector_size)) -t "9CC433E4-52DB-1F45-A951-316373C30605"
|
||||||
|
# partx -u -n 1 "$loopdev"
|
||||||
|
# mkfs.ext4 -F "$loopdev"p1
|
||||||
|
# sync
|
||||||
|
# }
|
||||||
|
|
||||||
|
create_stateful(){
|
||||||
|
local image="$1"
|
||||||
|
fdisk "$image" << EOF > /dev/null 2>&1
|
||||||
|
n
|
||||||
|
1
|
||||||
|
|
||||||
|
+${state_size}M
|
||||||
|
w
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
is_ext2() {
|
is_ext2() {
|
||||||
local rootfs="$1"
|
local rootfs="$1"
|
||||||
local offset="${2-0}"
|
local offset="${2-0}"
|
||||||
@ -48,7 +77,7 @@ disable_rw_mount() {
|
|||||||
|
|
||||||
shrink_partitions() {
|
shrink_partitions() {
|
||||||
local shim="$1"
|
local shim="$1"
|
||||||
fdisk "$shim" <<EOF
|
fdisk "$shim" <<EOF > /dev/null 2>&1
|
||||||
d
|
d
|
||||||
12
|
12
|
||||||
d
|
d
|
||||||
@ -69,7 +98,6 @@ shrink_partitions() {
|
|||||||
4
|
4
|
||||||
d
|
d
|
||||||
1
|
1
|
||||||
p
|
|
||||||
w
|
w
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
@ -80,11 +108,11 @@ truncate_image() {
|
|||||||
local final_sector=$(get_final_sector "$1")
|
local final_sector=$(get_final_sector "$1")
|
||||||
local end_bytes=$(((final_sector + buffer) * sector_size))
|
local end_bytes=$(((final_sector + buffer) * sector_size))
|
||||||
|
|
||||||
log "Truncating image to $(format_bytes "$end_bytes")"
|
echo "Truncating image to $(format_bytes "$end_bytes")"
|
||||||
truncate -s "$end_bytes" "$1"
|
truncate -s "$end_bytes" "$1" > /dev/null 2>&1
|
||||||
|
|
||||||
# recreate backup gpt table/header
|
# recreate backup gpt table/header
|
||||||
suppress sgdisk -e "$1" 2>&1 | sed 's/\a//g'
|
sgdisk -e "$1" 2>&1 | sed 's/\a//g' > /dev/null 2>&1
|
||||||
}
|
}
|
||||||
|
|
||||||
format_bytes() {
|
format_bytes() {
|
||||||
@ -92,24 +120,29 @@ format_bytes() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
shrink_root() {
|
shrink_root() {
|
||||||
log "Shrinking ROOT-A Partition"
|
loopdev="$@"
|
||||||
|
echo "$@"
|
||||||
|
echo "$1"
|
||||||
|
echo "Shrinking ROOT-A Partition"
|
||||||
|
|
||||||
enable_rw_mount "${LOOPDEV}p3"
|
echo $loopdev
|
||||||
suppress e2fsck -fy "${LOOPDEV}p3"
|
|
||||||
suppress resize2fs -M "${LOOPDEV}p3"
|
|
||||||
disable_rw_mount "${LOOPDEV}p3"
|
|
||||||
|
|
||||||
local sector_size=$(get_sector_size "$LOOPDEV")
|
enable_rw_mount "${loopdev}p3"
|
||||||
local block_size=$(tune2fs -l "${LOOPDEV}p3" | grep "Block size" | awk '{print $3}')
|
e2fsck -fy "${loopdev}p3"
|
||||||
local block_count=$(tune2fs -l "${LOOPDEV}p3" | grep "Block count" | awk '{print $3}')
|
resize2fs -M "${loopdev}p3"
|
||||||
|
disable_rw_mount "${loopdev}p3"
|
||||||
|
|
||||||
local original_sectors=$("$CGPT" show -i 3 -s -n -q "$LOOPDEV")
|
local sector_size=$(get_sector_size "$loopdev")
|
||||||
|
local block_size=$(tune2fs -l "${loopdev}p3" | grep "Block size" | awk '{print $3}')
|
||||||
|
local block_count=$(tune2fs -l "${loopdev}p3" | grep "Block count" | awk '{print $3}')
|
||||||
|
|
||||||
|
local original_sectors=$("$CGPT" show -i 3 -s -n -q "$loopdev")
|
||||||
local original_bytes=$((original_sectors * sector_size))
|
local original_bytes=$((original_sectors * sector_size))
|
||||||
|
|
||||||
local resized_bytes=$((block_count * block_size))
|
local resized_bytes=$((block_count * block_size))
|
||||||
local resized_sectors=$((resized_bytes / sector_size))
|
local resized_sectors=$((resized_bytes / sector_size))
|
||||||
|
|
||||||
echo "Resizing ROOT from $(format_bytes ${original_bytes}) to $(format_bytes ${resized_bytes})"
|
echo "Resizing ROOT from $(format_bytes ${original_bytes}) to $(format_bytes ${resized_bytes})"
|
||||||
"$CGPT" add -i 3 -s "$resized_sectors" "$LOOPDEV"
|
"$CGPT" add -i 3 -s "$resized_sectors" "$loopdev"
|
||||||
partx -u -n 3 "$LOOPDEV"
|
partx -u -n 3 "$loopdev"
|
||||||
}
|
}
|
@ -27,43 +27,84 @@ fi
|
|||||||
|
|
||||||
source lib/extract_initramfs.sh
|
source lib/extract_initramfs.sh
|
||||||
source lib/detect_arch.sh
|
source lib/detect_arch.sh
|
||||||
|
source lib/rootfs_utils.sh
|
||||||
|
|
||||||
echo "PicoShim builder"
|
echo "PicoShim builder"
|
||||||
echo "requires: binwalk, fdisk"
|
echo "requires: binwalk, fdisk, cgpt, mkfs.ext2, numfmt"
|
||||||
|
|
||||||
SHIM="$1"
|
SHIM="$1"
|
||||||
initramfs="/tmp/initramfs_path"
|
initramfs="/tmp/initramfs_path"
|
||||||
ROOTFS_MNT="/tmp/picoshim_rootmnt"
|
rootfs_mnt="/tmp/picoshim_rootmnt"
|
||||||
loopdev=$(losetup -f)
|
loopdev=$(losetup -f)
|
||||||
STATE_SIZE=$((1 * 1024 * 1024))
|
|
||||||
|
# gets the initramfs size, e.g: 6.5M, and rounds it to the nearest whole number, e.g: 7M
|
||||||
|
# we're giving it 5 extra MBs to allow the busybox binaries to be installed
|
||||||
|
initramfs_size=$(($(du -sb "$initramfs" | awk '{print $1}' | numfmt --to=iec | awk '{print int($1) + ($1 > int($1))}') + 2))
|
||||||
|
kernsize=$(fdisk -l ${loopdev}p2 | head -n 1 | awk '{printf $3}')
|
||||||
|
|
||||||
|
# size of stateful partition in MiB
|
||||||
|
state_size="1"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rm -rf $initramfs # cleanup previous instances of picoshim, if they existed.
|
rm -rf $initramfs # cleanup previous instances of picoshim, if they existed.
|
||||||
mkdir -p $initramfs
|
mkdir -p $initramfs
|
||||||
|
|
||||||
rm -rf $ROOTFS_MNT # cleanup previous instances of picoshim, if they existed.
|
rm -rf $rootfs_mnt # cleanup previous instances of picoshim, if they existed.
|
||||||
mkdir -p $ROOTFS_MNT
|
mkdir -p $rootfs_mnt
|
||||||
|
|
||||||
if [ -f "$SHIM" ]; then
|
if [ -f "$SHIM" ]; then
|
||||||
|
shrink_partitions "$SHIM"
|
||||||
losetup -P "$loopdev" "$SHIM"
|
losetup -P "$loopdev" "$SHIM"
|
||||||
else
|
else
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
arch=$(detect_arch $loopdev)
|
arch=$(detect_arch $loopdev)
|
||||||
extract_initramfs_full "$SHIM" "$initramfs" ""$loopdev"p2" "$arch"
|
extract_initramfs_full "$loopdev" "$initramfs" "/tmp/shim_kernel/kernel.img" "$arch"
|
||||||
|
dd if="${loopdev}p2" of=/tmp/kernel-new.bin bs=1M oflag=direct status=none
|
||||||
|
|
||||||
|
fdisk "$loopdev" <<EOF > /dev/null 2>&1
|
||||||
|
d
|
||||||
|
3
|
||||||
|
p
|
||||||
|
d
|
||||||
|
2
|
||||||
|
p
|
||||||
|
n
|
||||||
|
3
|
||||||
|
|
||||||
|
+${initramfs_size}M
|
||||||
|
n
|
||||||
|
2
|
||||||
|
|
||||||
|
+${kernsize}M
|
||||||
|
p
|
||||||
|
|
||||||
|
w
|
||||||
|
EOF
|
||||||
|
dd if=/tmp/kernel-new.bin of="${loopdev}p2" bs=1M oflag=direct status=none
|
||||||
|
|
||||||
echo "creating new filesystem on rootfs"
|
echo "creating new filesystem on rootfs"
|
||||||
echo "y" | mkfs.ext4 "$loopdev"p3 -L ROOT-A
|
echo "y" | mkfs.ext2 "$loopdev"p3 -L ROOT-A > /dev/null 2>&1
|
||||||
echo "mounting & moving files from initramfs to rootfs"
|
echo "mounting & moving files from initramfs to rootfs"
|
||||||
mount "$loopdev"p3 "$ROOTFS_MNT"
|
mount "$loopdev"p3 "$rootfs_mnt"
|
||||||
mv "$initramfs"/* "$ROOTFS_MNT"/
|
mv "$initramfs"/* "$rootfs_mnt"/
|
||||||
umount "$loopdev"p3
|
|
||||||
|
|
||||||
shrink_root
|
create_stateful "$loopdev"
|
||||||
|
|
||||||
|
|
||||||
|
echo "adding kernel priorities"
|
||||||
|
"$CGPT" add "$loopdev" -i 2 -t kernel -P 1
|
||||||
|
"$CGPT" add "$loopdev" -i 3 -t rootfs
|
||||||
|
|
||||||
echo "cleaning up"
|
echo "cleaning up"
|
||||||
losetup -D
|
losetup -D
|
||||||
rm -rf $initramfs
|
|
||||||
rm -rf $ROOTFS_MNT
|
truncate_image "$SHIM"
|
||||||
|
|
||||||
|
|
||||||
|
rm -rf $initramfs
|
||||||
|
rm -rf $rootfs_mnt
|
||||||
|
umount "$loopdev"p3
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user