its done?
This commit is contained in:
parent
28700afa8e
commit
34a519702e
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
|
grunt.bin.old
|
||||||
|
|
||||||
# Prerequisites
|
# Prerequisites
|
||||||
*.d
|
*.d
|
||||||
|
|
||||||
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"editor.largeFileOptimizations": true
|
"editor.disableMonospaceOptimizations": true,
|
||||||
}
|
}
|
BIN
builder/bins/aarch64/cgpt
Normal file
BIN
builder/bins/aarch64/cgpt
Normal file
Binary file not shown.
BIN
builder/bins/aarch64/sfdisk
Normal file
BIN
builder/bins/aarch64/sfdisk
Normal file
Binary file not shown.
BIN
builder/bootstrap/aarch64/bin/bash
Executable file
BIN
builder/bootstrap/aarch64/bin/bash
Executable file
Binary file not shown.
0
builder/bootstrap/bin/bash → builder/bootstrap/x86_64/bin/bash
Normal file → Executable file
0
builder/bootstrap/bin/bash → builder/bootstrap/x86_64/bin/bash
Normal file → Executable file
@ -7,7 +7,7 @@ detect_arch() {
|
|||||||
if [ -f "$MNT_ROOT/bin/bash" ]; then
|
if [ -f "$MNT_ROOT/bin/bash" ]; then
|
||||||
case "$(file -b "$MNT_ROOT/bin/bash" | awk -F ', ' '{print $2}' | tr '[:upper:]' '[:lower:]')" in
|
case "$(file -b "$MNT_ROOT/bin/bash" | awk -F ', ' '{print $2}' | tr '[:upper:]' '[:lower:]')" in
|
||||||
# for now assume arm has aarch64 kernel
|
# for now assume arm has aarch64 kernel
|
||||||
*aarch64* | *armv8* | *arm*) TARGET_ARCH=arm64 ;;
|
*aarch64* | *armv8* | *arm*) TARGET_ARCH=aarch64 ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
echo "$TARGET_ARCH"
|
echo "$TARGET_ARCH"
|
||||||
|
@ -29,6 +29,7 @@ n
|
|||||||
+${state_size}M
|
+${state_size}M
|
||||||
w
|
w
|
||||||
EOF
|
EOF
|
||||||
|
echo "y" | mkfs.ext4 "$image"p1 > /dev/null 2>&1
|
||||||
}
|
}
|
||||||
|
|
||||||
is_ext2() {
|
is_ext2() {
|
||||||
|
55
builder/picoshim.sh
Normal file → Executable file
55
builder/picoshim.sh
Normal file → Executable file
@ -14,6 +14,7 @@ if [ "$1" == "" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
SCRIPT_DIR=$(dirname "$0")
|
SCRIPT_DIR=$(dirname "$0")
|
||||||
|
SCRIPT_DIR=${SCRIPT_DIR:-"."}
|
||||||
VERSION=1
|
VERSION=1
|
||||||
|
|
||||||
ARCHITECTURE="$(uname -m)"
|
ARCHITECTURE="$(uname -m)"
|
||||||
@ -32,16 +33,12 @@ echo "PicoShim builder"
|
|||||||
echo "requires: binwalk, fdisk, cgpt, mkfs.ext2, numfmt"
|
echo "requires: binwalk, fdisk, cgpt, mkfs.ext2, numfmt"
|
||||||
|
|
||||||
SHIM="$1"
|
SHIM="$1"
|
||||||
initramfs="/tmp/initramfs_path"
|
initramfs="/tmp/picoshim_initramfs"
|
||||||
rootfs_mnt="/tmp/picoshim_rootmnt"
|
rootfs_mnt="/tmp/picoshim_rootfsmnt"
|
||||||
|
state_mnt="/tmp/picoshim_statemnt"
|
||||||
loopdev=$(losetup -f)
|
loopdev=$(losetup -f)
|
||||||
CGPT="${SCRIPT_DIR}/lib/bin/$ARCHITECTURE/cgpt"
|
CGPT="${SCRIPT_DIR}/bins/$ARCHITECTURE/cgpt"
|
||||||
SFDISK="${SCRIPT_DIR}/lib/bin/$ARCHITECTURE/sfdisk"
|
SFDISK="${SCRIPT_DIR}/bins/$ARCHITECTURE/sfdisk"
|
||||||
|
|
||||||
# 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
|
# size of stateful partition in MiB
|
||||||
state_size="1"
|
state_size="1"
|
||||||
@ -54,6 +51,9 @@ 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
|
||||||
|
|
||||||
|
rm -rf $state_mnt # cleanup previous instances of picoshim, if they existed.
|
||||||
|
mkdir -p $state_mnt
|
||||||
|
|
||||||
if [ -f "$SHIM" ]; then
|
if [ -f "$SHIM" ]; then
|
||||||
shrink_partitions "$SHIM"
|
shrink_partitions "$SHIM"
|
||||||
losetup -P "$loopdev" "$SHIM"
|
losetup -P "$loopdev" "$SHIM"
|
||||||
@ -64,8 +64,13 @@ fi
|
|||||||
arch=$(detect_arch $loopdev)
|
arch=$(detect_arch $loopdev)
|
||||||
extract_initramfs_full "$loopdev" "$initramfs" "/tmp/shim_kernel/kernel.img" "$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
|
dd if="${loopdev}p2" of=/tmp/kernel-new.bin bs=1M oflag=direct status=none
|
||||||
|
# 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 & our bootstrapped stuff
|
||||||
|
initramfs_size=$(($(du -sb "$initramfs" | awk '{print $1}' | numfmt --to=iec | awk '{print int($1) + ($1 > int($1))}') + 3))
|
||||||
|
kernsize=$(($(fdisk -l ${loopdev}p2 | head -n 1 | awk '{printf $3}')))
|
||||||
|
# add another meg to the kernel just incase of resigning issues (:spoob:)
|
||||||
|
|
||||||
fdisk "$loopdev" <<EOF > /dev/null 2>&1
|
fdisk "$loopdev" <<EOF > /dev/null 2>&1
|
||||||
d
|
d
|
||||||
3
|
3
|
||||||
p
|
p
|
||||||
@ -84,7 +89,7 @@ p
|
|||||||
|
|
||||||
w
|
w
|
||||||
EOF
|
EOF
|
||||||
dd if=/tmp/kernel-new.bin of="${loopdev}p2" bs=1M oflag=direct status=none
|
dd if=/tmp/kernel-new.bin of="${loopdev}p2" bs=1M oflag=direct status=none conv=notrunc
|
||||||
|
|
||||||
echo "creating new filesystem on rootfs"
|
echo "creating new filesystem on rootfs"
|
||||||
echo "y" | mkfs.ext2 "$loopdev"p3 -L ROOT-A > /dev/null 2>&1
|
echo "y" | mkfs.ext2 "$loopdev"p3 -L ROOT-A > /dev/null 2>&1
|
||||||
@ -92,20 +97,38 @@ 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"/
|
||||||
|
|
||||||
|
echo "bootstrapping rootfs..."
|
||||||
|
# we have to do this due to issues with the `cp` command
|
||||||
|
noarchfolders=$(ls "${SCRIPT_DIR}/bootstrap/noarch/")
|
||||||
|
for folder in $noarchfolders; do
|
||||||
|
cp -r "${SCRIPT_DIR}/bootstrap/noarch/${folder}" "$rootfs_mnt"
|
||||||
|
done
|
||||||
|
|
||||||
|
archfolders=$(ls "${SCRIPT_DIR}/bootstrap/$arch/")
|
||||||
|
for folder in $archfolders; do
|
||||||
|
cp -r "${SCRIPT_DIR}/bootstrap/${arch}/${folder}" "$rootfs_mnt"
|
||||||
|
done
|
||||||
|
|
||||||
|
printf "#!/bin/busybox sh \n /bin/busybox --install /bin" > "$rootfs_mnt"/installbins
|
||||||
|
chmod +x "$rootfs_mnt"/installbins
|
||||||
|
chroot "$rootfs_mnt" "/installbins"
|
||||||
|
|
||||||
create_stateful "$loopdev"
|
create_stateful "$loopdev"
|
||||||
|
mount "$loopdev"p1 "$state_mnt"
|
||||||
|
mkdir -p "$state_mnt"/dev_image/etc/
|
||||||
|
touch "$state_mnt"/dev_image/etc/lsb-factory
|
||||||
|
|
||||||
|
|
||||||
echo "adding kernel priorities"
|
echo "adding kernel priorities"
|
||||||
"$CGPT" add "$loopdev" -i 2 -t kernel -P 1
|
"$CGPT" add "$loopdev" -i 2 -t kernel -P 15 -T 15 -S 1 -R 1 -l KERN-A
|
||||||
"$CGPT" add "$loopdev" -i 3 -t rootfs
|
"$CGPT" add "$loopdev" -i 3 -t rootfs -l ROOT-A
|
||||||
|
|
||||||
echo "cleaning up"
|
echo "cleaning up"
|
||||||
losetup -D
|
losetup -D
|
||||||
|
|
||||||
truncate_image "$SHIM"
|
truncate_image "$SHIM"
|
||||||
|
|
||||||
|
umount "$loopdev"p3
|
||||||
|
umount "$loopdev"p1
|
||||||
rm -rf $initramfs
|
rm -rf $initramfs
|
||||||
rm -rf $rootfs_mnt
|
rm -rf $rootfs_mnt
|
||||||
umount "$loopdev"p3
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user