mirror of
https://github.com/brain-hackers/buildbrain
synced 2026-06-15 14:08:33 +09:00
doc: update build_image.sh help message and default arguments
This commit is contained in:
@@ -1,14 +1,37 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -uex -o pipefail
|
set -uex -o pipefail
|
||||||
|
|
||||||
JOBS=$(nproc)
|
show_help() {
|
||||||
|
cat << 'EOF'
|
||||||
|
Usage: ./build_image.sh ROOTFS IMG_NAME SIZE_M
|
||||||
|
|
||||||
|
Build a bootable image for Brainux.
|
||||||
|
|
||||||
|
Arguments:
|
||||||
|
ROOTFS Path to the root filesystem directory to include in the image (default: "rootfs").
|
||||||
|
IMG_NAME Name of the output image file (default: brainux.img).
|
||||||
|
SIZE_M Size of the output image in megabytes (default: 1024).
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
# Trigger help if requested or if no arguments are passed
|
||||||
|
if [[ "$1" == "-h" || "$1" == "--help" || -z "$1" ]]; then
|
||||||
|
show_help
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# JOBS is used to control the number of parallel jobs when building u-boot.
|
||||||
|
# By default, it uses the number of CPU cores. This can be overridden by
|
||||||
|
# setting the IMG_BUILD_JOBS environment variable before running the script,
|
||||||
|
# handy for Docker environments or when you want to limit resource usage.
|
||||||
|
JOBS=${IMG_BUILD_JOBS:-$(nproc)}
|
||||||
REPO=$(git rev-parse --show-toplevel)
|
REPO=$(git rev-parse --show-toplevel)
|
||||||
WORK=${REPO}/image/work
|
WORK=${REPO}/image/work
|
||||||
LINUX=${REPO}/linux-brain
|
LINUX=${REPO}/linux-brain
|
||||||
ROOTFS=$1
|
ROOTFS=${1:-rootfs} # Default to "rootfs" if not specified
|
||||||
IMG_NAME=$2
|
IMG_NAME=${2:-brainux.img}
|
||||||
IMG=${REPO}/image/${IMG_NAME}
|
IMG=${REPO}/image/${IMG_NAME}
|
||||||
SIZE_M=$3
|
SIZE_M=${3:-1024} # Default to 1GB if not specified
|
||||||
export CROSS_COMPILE=arm-linux-gnueabi-
|
export CROSS_COMPILE=arm-linux-gnueabi-
|
||||||
|
|
||||||
mkdir -p ${WORK}
|
mkdir -p ${WORK}
|
||||||
@@ -16,35 +39,44 @@ mkdir -p ${WORK}/lilobin
|
|||||||
|
|
||||||
for i in "a7200" "a7400" "sh1" "sh2" "sh3" "sh4" "sh5" "sh6" "sh7"; do
|
for i in "a7200" "a7400" "sh1" "sh2" "sh3" "sh4" "sh5" "sh6" "sh7"; do
|
||||||
NUM=$(echo $i | sed -E 's/sh//g')
|
NUM=$(echo $i | sed -E 's/sh//g')
|
||||||
|
BUILD_DIR=${WORK}/uboot-build-${i}
|
||||||
|
|
||||||
make -C ${REPO}/u-boot-brain distclean pw${i}_defconfig
|
# Build per-board from isolated source copies to avoid fragile clean rules.
|
||||||
make -j${JOBS} -C ${REPO}/u-boot-brain u-boot.bin
|
rm -rf ${BUILD_DIR}
|
||||||
${REPO}/nkbin_maker/bsd-ce ${REPO}/u-boot-brain/u-boot.bin
|
rsync -a --exclude '.git' ${REPO}/u-boot-brain/ ${BUILD_DIR}/
|
||||||
|
make -C ${BUILD_DIR} pw${i}_defconfig
|
||||||
|
make -j${JOBS} -C ${BUILD_DIR} u-boot.bin
|
||||||
|
${REPO}/nkbin_maker/bsd-ce ${BUILD_DIR}/u-boot.bin
|
||||||
|
|
||||||
case $i in
|
case $i in
|
||||||
"a7200")
|
"a7200")
|
||||||
mv ${REPO}/nk.bin ${WORK}/edna3exe.bin
|
mv ${REPO}/nk.bin ${WORK}/edna3exe.bin
|
||||||
mv ${REPO}/u-boot-brain/u-boot.bin ${WORK}/lilobin/gen2.bin;;
|
mv ${BUILD_DIR}/u-boot.bin ${WORK}/lilobin/gen2.bin;;
|
||||||
"a7400")
|
"a7400")
|
||||||
mv ${REPO}/u-boot-brain/u-boot.bin ${WORK}/lilobin/gen2_7400.bin;;
|
mv ${BUILD_DIR}/u-boot.bin ${WORK}/lilobin/gen2_7400.bin;;
|
||||||
"sh1" | "sh2" | "sh3")
|
"sh1" | "sh2" | "sh3")
|
||||||
mv ${REPO}/nk.bin ${WORK}/edsa${NUM}exe.bin
|
mv ${REPO}/nk.bin ${WORK}/edsa${NUM}exe.bin
|
||||||
mv ${REPO}/u-boot-brain/u-boot.bin ${WORK}/lilobin/gen3_${NUM}.bin;;
|
mv ${BUILD_DIR}/u-boot.bin ${WORK}/lilobin/gen3_${NUM}.bin;;
|
||||||
"sh4" | "sh5" | "sh6" | "sh7")
|
"sh4" | "sh5" | "sh6" | "sh7")
|
||||||
mv ${REPO}/nk.bin ${WORK}/edsh${NUM}exe.bin
|
mv ${REPO}/nk.bin ${WORK}/edsh${NUM}exe.bin
|
||||||
mv ${REPO}/u-boot-brain/u-boot.bin ${WORK}/lilobin/gen3_${NUM}.bin;;
|
mv ${BUILD_DIR}/u-boot.bin ${WORK}/lilobin/gen3_${NUM}.bin;;
|
||||||
*)
|
*)
|
||||||
echo "WTF: $i"
|
echo "WTF: $i"
|
||||||
exit 1;;
|
exit 1;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Create an empty image file of the specified size.
|
||||||
dd if=/dev/zero of=${IMG} bs=1M count=${SIZE_M}
|
dd if=/dev/zero of=${IMG} bs=1M count=${SIZE_M}
|
||||||
|
|
||||||
START1=2048
|
# We want to partition the image with two partitions:
|
||||||
SECTORS1=$((1024 * 1024 * 64 / 512))
|
# * a 64MB FAT32 partition for the bootloader and kernel, and
|
||||||
START2=$((2048 + ${SECTORS1}))
|
# * the rest of the space as an ext4 partition for the root filesystem.
|
||||||
|
START1=2048 # Start at 1MB (2048 sectors of 512 bytes) to align with typical partitioning schemes and avoid issues with some bootloaders.
|
||||||
|
SECTORS1=$((1024 * 1024 * 64 / 512)) # 64MB in sectors (512 bytes per sector)
|
||||||
|
START2=$((START1 + SECTORS1)) # Start the second partition immediately after the first
|
||||||
|
|
||||||
|
# We use sfdisk to create the partition table. The first partition is type 'b' (W95 FAT32), and the second is type '83' (Linux).
|
||||||
cat <<EOF > ${WORK}/part.sfdisk
|
cat <<EOF > ${WORK}/part.sfdisk
|
||||||
${IMG}1 : start=${START1}, size=${SECTORS1}, type=b
|
${IMG}1 : start=${START1}, size=${SECTORS1}, type=b
|
||||||
${IMG}2 : start=${START2}, type=83
|
${IMG}2 : start=${START2}, type=83
|
||||||
@@ -52,9 +84,12 @@ EOF
|
|||||||
|
|
||||||
sfdisk ${IMG} < ${WORK}/part.sfdisk
|
sfdisk ${IMG} < ${WORK}/part.sfdisk
|
||||||
|
|
||||||
sudo kpartx -av ${IMG}
|
# We want to format and write to the partitions. To do so, we use kpartx to create device mappings for the partitions in the image.
|
||||||
|
KPARTX_OUTPUT=$(sudo kpartx -av ${IMG})
|
||||||
LOOPDEV=$(losetup -l | grep ${IMG_NAME} | grep -o 'loop.' | tail -n 1)
|
# Extract the loop device name from kpartx output. It looks like:
|
||||||
|
# "add map loop0p1 (252:0): 0 131072 linear /dev/loop0 2048"
|
||||||
|
# We want to extract "loop0" from this line.
|
||||||
|
LOOPDEV=$(echo "${KPARTX_OUTPUT}" | sed -n 's/^add map \(loop[0-9]\+\)p1.*/\1/p' | head -n 1)
|
||||||
|
|
||||||
sudo mkfs.fat -n boot -F32 -v -I /dev/mapper/${LOOPDEV}p1
|
sudo mkfs.fat -n boot -F32 -v -I /dev/mapper/${LOOPDEV}p1
|
||||||
sudo mkfs.ext4 -L rootfs /dev/mapper/${LOOPDEV}p2
|
sudo mkfs.ext4 -L rootfs /dev/mapper/${LOOPDEV}p2
|
||||||
@@ -63,13 +98,14 @@ mkdir -p ${WORK}/p1 ${WORK}/p2
|
|||||||
sudo mount -o utf8=true /dev/mapper/${LOOPDEV}p1 ${WORK}/p1
|
sudo mount -o utf8=true /dev/mapper/${LOOPDEV}p1 ${WORK}/p1
|
||||||
sudo mount /dev/mapper/${LOOPDEV}p2 ${WORK}/p2
|
sudo mount /dev/mapper/${LOOPDEV}p2 ${WORK}/p2
|
||||||
|
|
||||||
echo ${BRAINUX_VERSION} > ${WORK}/brainux_version
|
echo ${BRAINUX_VERSION:-unknown} > ${WORK}/brainux_version
|
||||||
sudo cp ${WORK}/brainux_version ${WORK}/p1/
|
sudo cp ${WORK}/brainux_version ${WORK}/p1/
|
||||||
sudo cp ${LINUX}/arch/arm/boot/zImage ${WORK}/p1/
|
sudo cp ${LINUX}/arch/arm/boot/zImage ${WORK}/p1/
|
||||||
sudo cp ${LINUX}/arch/arm/boot/dts/imx28-pw*.dtb ${WORK}/p1/
|
sudo cp ${LINUX}/arch/arm/boot/dts/imx28-pw*.dtb ${WORK}/p1/
|
||||||
sudo mkdir -p ${WORK}/p1/nk
|
sudo mkdir -p ${WORK}/p1/nk
|
||||||
sudo cp ${WORK}/*.bin ${WORK}/p1/nk/
|
sudo cp ${WORK}/*.bin ${WORK}/p1/nk/
|
||||||
|
|
||||||
|
# Prepare the WinCE application "Launch Linux". "LILO" stands for "Linux Loader".
|
||||||
make -C ${REPO}/brainlilo
|
make -C ${REPO}/brainlilo
|
||||||
|
|
||||||
LILO="${WORK}/p1/アプリ/Launch Linux"
|
LILO="${WORK}/p1/アプリ/Launch Linux"
|
||||||
@@ -86,6 +122,7 @@ sudo cp ${WORK}/lilobin/*.bin ${WORK}/p1/loader/
|
|||||||
|
|
||||||
sudo cp -ra ${REPO}/${ROOTFS}/* ${WORK}/p2/
|
sudo cp -ra ${REPO}/${ROOTFS}/* ${WORK}/p2/
|
||||||
|
|
||||||
|
# Clean up: unmount the partitions and remove the device mappings.
|
||||||
sudo umount ${WORK}/p1 ${WORK}/p2
|
sudo umount ${WORK}/p1 ${WORK}/p2
|
||||||
sudo kpartx -d ${IMG}
|
sudo kpartx -d ${IMG}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user