blob: bb8b84a3fa1dbf7807b5ed88ceaef291ffee0091 [file] [log] [blame]
Austin Schuh791ac752022-11-26 19:14:39 -08001#!/bin/bash
2
3set -eux
4set -o pipefail
5
6UBOOT_VERSION=v2022.10
7
8IMAGE="arm64_bullseye_debian.img"
9KERNEL_VERSION=6.0.8-rt14-rockpi4b
10PARTITION="${IMAGE}.partition"
11
Henry Speiser2fc93332023-01-20 22:57:25 -080012# Check if dependencies are missing.
13missing_deps=()
14REQUIRED_DEPS=(
15 flex
16 bison
17 gcc-arm-none-eabi
18 gcc-aarch64-linux-gnu
Austin Schuh74617c02023-02-05 18:44:18 -080019 u-boot-tools
Henry Speiser2fc93332023-01-20 22:57:25 -080020 device-tree-compiler
21 swig
Henry Speiser31c573a2023-01-28 12:44:59 -080022 debootstrap
Henry Speiser2fc93332023-01-20 22:57:25 -080023)
24for dep in "${REQUIRED_DEPS[@]}"; do
25 if ! dpkg-query -W -f='${Status}' "${dep}" | grep -q "install ok installed"; then
26 missing_deps+=("${dep}")
27 fi
28done
29
30# Print missing dependencies
31if ((${#missing_deps[@]} != 0 )); then
32 echo "Missing dependencies, please install:"
33 echo apt install "${missing_deps[@]}"
34 exit 1
35else
36 echo -e "\033[32mAll dependencies are already installed\033[0m"
37fi
38
Austin Schuh791ac752022-11-26 19:14:39 -080039export CC=aarch64-linux-gnu-
40
41# Reset any existing mounts.
42if mount | grep "${PARTITION}/boot" >/dev/null; then
43 sudo umount "${PARTITION}/boot"
44fi
45
46if mount | grep "${PARTITION}" >/dev/null; then
47 sudo umount "${PARTITION}"
48fi
49
henry19afbff2022-12-17 18:33:40 -080050LOOPBACK="$(sudo losetup --list | awk "/$IMAGE/"'{print $1}')"
Austin Schuh791ac752022-11-26 19:14:39 -080051if [[ -n "${LOOPBACK}" ]]; then
52 echo "Loop still exists..."
53 sudo losetup -d "${LOOPBACK}"
54fi
55
56# Build bl31.elf.
57if [[ ! -e arm-trusted-firmware ]]; then
58 git clone https://github.com/ARM-software/arm-trusted-firmware --depth=1
59fi
60
61pushd arm-trusted-firmware/
62git pull --ff-only
63#make CROSS_COMPILE="${CC}" realclean -j "$(nproc)"
64make CROSS_COMPILE="${CC}" PLAT=rk3399 -j "$(nproc)"
65popd
66
67export BL31="$(pwd)/arm-trusted-firmware/build/rk3399/release/bl31/bl31.elf"
68
69ls -lah "${BL31}"
70
71# Now, build uboot.
72if [[ ! -e u-boot ]]; then
Henry Speiser823acb32023-01-21 10:56:30 -080073 git clone -b "${UBOOT_VERSION}" https://github.com/u-boot/u-boot --depth=1
Austin Schuh791ac752022-11-26 19:14:39 -080074fi
75
76pushd u-boot/
77git fetch origin "${UBOOT_VERSION}"
78git reset --hard "${UBOOT_VERSION}"
79
80#make ARCH=arm CROSS_COMPILE="${CC}" distclean -j $(nproc)
81make ARCH=arm CROSS_COMPILE="${CC}" rock-pi-4-rk3399_defconfig -j "$(nproc)"
82make ARCH=arm CROSS_COMPILE="${CC}" -j "$(nproc)"
83echo "Made uboot"
84popd
85
henry19afbff2022-12-17 18:33:40 -080086function target_mkdir() {
87 target "install -d -m $2 -o $(echo $1 | sed 's/\.[^.]*//') -g $(echo $1 | sed 's/[^.]*\.//') $3"
88}
89
90function copyfile() {
91 sudo cp contents/$3 ${PARTITION}/$3
92 sudo chmod $2 ${PARTITION}/$3
93 target "chown $1 /$3"
94}
95
Austin Schuh791ac752022-11-26 19:14:39 -080096
97# Now build the base set of partitions.
98NEW_IMAGE=0
99if [[ ! -e "${IMAGE}" ]]; then
100 NEW_IMAGE=1
101 dd if=/dev/zero of="${IMAGE}" bs=1 count=0 seek=3G
102 dd if=./u-boot/idbloader.img of="${IMAGE}" seek=64 conv=notrunc
103 dd if=./u-boot/u-boot.itb of="${IMAGE}" seek=16384 conv=notrunc
104
105 sfdisk "${IMAGE}" <<-__EOF__
10616M,64M,L,*
10780M,,L,*
108__EOF__
109
110 sudo losetup -P -f "${IMAGE}"
111 LOOPBACK="$(sudo losetup --list | grep "${IMAGE}" | awk '{print $1}')"
112
113 sudo mkfs.fat "${LOOPBACK}p1"
114 sudo mkfs.ext4 -L rootfs "${LOOPBACK}p2"
115
116 sudo losetup -d "${LOOPBACK}"
117fi
118
119
120# Mount them
121mkdir -p "${PARTITION}"
122
123sudo losetup -P -f "${IMAGE}"
124LOOPBACK="$(sudo losetup --list | grep "${IMAGE}" | awk '{print $1}')"
125sudo mount "${LOOPBACK}p2" "${PARTITION}"
126if [[ ! -e "${PARTITION}/boot" ]]; then
127 sudo mkdir "${PARTITION}/boot"
128fi
129sudo mount "${LOOPBACK}p1" "${PARTITION}/boot"
130
131# Run the string command as root inside the target.
132function target() {
Austin Schuh4a716562023-01-28 13:43:02 -0800133 sudo chroot --userspec=root:root "${PARTITION}" qemu-aarch64-static \
Austin Schuh791ac752022-11-26 19:14:39 -0800134 /bin/bash -c "$1"
135}
136
137# Run the string command as the pi user inside the target.
138function pi_target() {
Austin Schuh4a716562023-01-28 13:43:02 -0800139 sudo chroot --userspec=pi:pi --groups=pi "${PARTITION}" qemu-aarch64-static \
Austin Schuh791ac752022-11-26 19:14:39 -0800140 /bin/bash -c "$1"
141}
142
143# And, if we made a new image, debootstrap to get things going.
144if (( NEW_IMAGE == 1 )); then
145 sudo debootstrap --arch=arm64 --no-check-gpg --foreign bullseye \
146 "${PARTITION}" http://deb.debian.org/debian/
147 sudo cp /usr/bin/qemu-aarch64-static "${PARTITION}/usr/bin/"
148
149 target "/debootstrap/debootstrap --second-stage"
150
151 target "useradd -m -p '\$y\$j9T\$85lzhdky63CTj.two7Zj20\$pVY53UR0VebErMlm8peyrEjmxeiRw/rfXfx..9.xet1' -s /bin/bash pi"
152
153else
154 sudo cp /usr/bin/qemu-aarch64-static "${PARTITION}/usr/bin/"
155fi
156
157# Install the kernel.
158sudo rm -rf "${PARTITION}/boot/dtbs/${KERNEL_VERSION}/"
159sudo rm -rf "${PARTITION}/lib/modules/${KERNEL_VERSION}/"
160sudo mkdir -p "${PARTITION}/lib/modules/"
161sudo tar --owner=0 --group=0 --no-same-owner --no-same-permissions -xvf \
162 "linux-kernel-${KERNEL_VERSION}.tar.xz" -C "${PARTITION}/boot/" \
163 --strip-components=2 ./boot/
164sudo tar --strip-components=3 -xvf "linux-kernel-${KERNEL_VERSION}.tar.xz" \
165 -C "${PARTITION}/lib/modules/" ./lib/modules
166
167# Now, configure it to start automatically.
Austin Schuh74617c02023-02-05 18:44:18 -0800168cat << __EOF__ | sudo tee "${PARTITION}/boot/sdcard_extlinux.conf"
Austin Schuh791ac752022-11-26 19:14:39 -0800169label Linux ${KERNEL_VERSION}
170 kernel /vmlinuz-${KERNEL_VERSION}
171 append earlycon=uart8250,mmio32,0xff1a0000 earlyprintk console=ttyS2,1500000n8 root=/dev/mmcblk0p2 ro rootfstype=ext4 rootwait
172 fdtdir /dtbs/${KERNEL_VERSION}/
173__EOF__
Austin Schuh74617c02023-02-05 18:44:18 -0800174cat << __EOF__ | sudo tee "${PARTITION}/boot/emmc_extlinux.conf"
175label Linux ${KERNEL_VERSION}
176 kernel /vmlinuz-${KERNEL_VERSION}
177 append earlycon=uart8250,mmio32,0xff1a0000 earlyprintk console=ttyS2,1500000n8 root=/dev/mmcblk1p2 ro rootfstype=ext4 rootwait
178 fdtdir /dtbs/${KERNEL_VERSION}/
179__EOF__
Austin Schuh791ac752022-11-26 19:14:39 -0800180
Austin Schuh74617c02023-02-05 18:44:18 -0800181mkimage -c none -A arm -T script -d contents/boot/boot.script contents/boot/boot.scr
182copyfile root.root 644 boot/boot.scr
183rm contents/boot/boot.scr
Austin Schuh791ac752022-11-26 19:14:39 -0800184copyfile root.root 644 etc/apt/sources.list.d/bullseye-backports.list
185copyfile root.root 644 etc/apt/sources.list.d/frc971.list
186
187target "apt-get update"
Austin Schuh4a716562023-01-28 13:43:02 -0800188target "apt-get -y install -t bullseye-backports systemd systemd-resolved"
189
190# Make systemd-resolved work.
191target_mkdir root.root 755 run/systemd
192target_mkdir systemd-resolve.systemd-resolve 755 run/systemd/resolve
193copyfile systemd-resolve.systemd-resolve 644 run/systemd/resolve/stub-resolv.conf
194target "systemctl enable systemd-resolved"
195
Austin Schuh6283b262022-12-31 23:11:15 -0800196target "apt-get -y install -t bullseye-backports bpfcc-tools"
Austin Schuh791ac752022-11-26 19:14:39 -0800197
Austin Schuh709c2322023-02-17 13:30:32 -0800198target "apt-get install -y sudo openssh-server python3 bash-completion git v4l-utils cpufrequtils pmount rsync vim-nox chrony libopencv-calib3d4.5 libopencv-contrib4.5 libopencv-core4.5 libopencv-features2d4.5 libopencv-flann4.5 libopencv-highgui4.5 libopencv-imgcodecs4.5 libopencv-imgproc4.5 libopencv-ml4.5 libopencv-objdetect4.5 libopencv-photo4.5 libopencv-shape4.5 libopencv-stitching4.5 libopencv-superres4.5 libopencv-video4.5 libopencv-videoio4.5 libopencv-videostab4.5 libopencv-viz4.5 libnice10 pmount libnice-dev feh libgstreamer1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-bad1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-nice usbutils locales trace-cmd clinfo jq strace sysstat lm-sensors"
Austin Schuhc5300f22023-01-03 21:20:44 -0800199target "cd /tmp && wget https://software.frc971.org/Build-Dependencies/libmali-midgard-t86x-r14p0-x11_1.9-1_arm64.deb && sudo dpkg -i libmali-midgard-t86x-r14p0-x11_1.9-1_arm64.deb && rm libmali-midgard-t86x-r14p0-x11_1.9-1_arm64.deb"
200
201target "apt-get clean"
Austin Schuh791ac752022-11-26 19:14:39 -0800202
203target "usermod -a -G sudo pi"
204target "usermod -a -G video pi"
Austin Schuh31960d02022-12-11 16:51:14 -0800205target "localedef -i en_US -f UTF-8 en_US.UTF-8"
Austin Schuh791ac752022-11-26 19:14:39 -0800206
Austin Schuh791ac752022-11-26 19:14:39 -0800207copyfile root.root 644 etc/fstab
208copyfile root.root 440 etc/sudoers
209copyfile root.root 444 etc/default/cpufrequtils
210target_mkdir root.root 755 etc/systemd/network
211copyfile root.root 644 etc/systemd/network/eth0.network
212target_mkdir pi.pi 755 home/pi/.ssh
213copyfile pi.pi 600 home/pi/.ssh/authorized_keys
214target_mkdir root.root 700 root/bin
215copyfile root.root 500 root/bin/grow.sh
216copyfile root.root 500 root/bin/change_hostname.sh
217copyfile root.root 500 root/bin/deploy_kernel.sh
henryebe91952023-01-17 22:39:20 -0800218copyfile root.root 500 root/bin/chrt.sh
Austin Schuh791ac752022-11-26 19:14:39 -0800219copyfile root.root 644 etc/systemd/system/grow-rootfs.service
Austin Schuh74617c02023-02-05 18:44:18 -0800220copyfile root.root 644 etc/systemd/system/mount-boot.service
Austin Schuh791ac752022-11-26 19:14:39 -0800221copyfile root.root 644 etc/sysctl.d/sctp.conf
222copyfile root.root 644 etc/systemd/logind.conf
Austin Schuh6283b262022-12-31 23:11:15 -0800223copyfile root.root 555 etc/bash_completion.d/aos_dump_autocomplete
224copyfile root.root 444 etc/modules-load.d/adis16505.conf
Austin Schuh791ac752022-11-26 19:14:39 -0800225copyfile root.root 644 etc/security/limits.d/rt.conf
226copyfile root.root 644 etc/systemd/system/frc971.service
227copyfile root.root 644 etc/systemd/system/frc971chrt.service
228copyfile root.root 644 etc/systemd/system/usb-mount@.service
229copyfile root.root 644 etc/udev/rules.d/99-usb-mount.rules
Austin Schuh6283b262022-12-31 23:11:15 -0800230copyfile root.root 644 etc/udev/rules.d/99-adis16505.rules
Austin Schuhc5300f22023-01-03 21:20:44 -0800231copyfile root.root 644 etc/udev/rules.d/99-mali.rules
Austin Schuh174f23e2023-02-17 13:30:47 -0800232copyfile root.root 644 etc/chrony/chrony.conf
Austin Schuh791ac752022-11-26 19:14:39 -0800233
234target "apt-get update"
Austin Schuh791ac752022-11-26 19:14:39 -0800235
236target "systemctl enable systemd-networkd"
Austin Schuh791ac752022-11-26 19:14:39 -0800237target "systemctl enable grow-rootfs"
Austin Schuh74617c02023-02-05 18:44:18 -0800238target "systemctl enable mount-boot"
Austin Schuh791ac752022-11-26 19:14:39 -0800239target "systemctl enable frc971"
240target "systemctl enable frc971chrt"
241target "/root/bin/change_hostname.sh pi-971-1"
242
243
244if [[ ! -e "${PARTITION}/home/pi/.dotfiles" ]]; then
245 pi_target "cd /home/pi/ && \
246 git clone --separate-git-dir=/home/pi/.dotfiles https://github.com/AustinSchuh/.dotfiles.git tmpdotfiles && \
247 rsync --recursive --verbose --exclude .git tmpdotfiles/ /home/pi/ && \
248 rm -r tmpdotfiles && \
Austin Schuh4a716562023-01-28 13:43:02 -0800249 git --git-dir=/home/pi/.dotfiles/ --work-tree=/home/pi/ config --local status.showUntrackedFiles no"
250 pi_target "vim -c \":qa!\""
Austin Schuh791ac752022-11-26 19:14:39 -0800251
252 target "cd /root/ && \
253 git clone --separate-git-dir=/root/.dotfiles https://github.com/AustinSchuh/.dotfiles.git tmpdotfiles && \
254 rsync --recursive --verbose --exclude .git tmpdotfiles/ /root/ && rm -r tmpdotfiles && \
Austin Schuh4a716562023-01-28 13:43:02 -0800255 git --git-dir=/root/.dotfiles/ --work-tree=/root/ config --local status.showUntrackedFiles no"
256 target "vim -c \":qa!\""
Austin Schuh791ac752022-11-26 19:14:39 -0800257fi
258
259target "apt-get clean"
260
261sudo chroot ${PARTITION} qemu-aarch64-static /bin/bash
262
263# TODO(austin): This appears to not be working... pi_target doesn't apper to be happy
Austin Schuh4a716562023-01-28 13:43:02 -0800264sudo chroot --userspec=pi:pi --groups=pi ${PARTITION} qemu-aarch64-static /bin/bash
Austin Schuh791ac752022-11-26 19:14:39 -0800265
266# TODO(austin): everything else we were doing to the pi's.
267sudo rm ${PARTITION}/usr/bin/qemu-aarch64-static
268sudo umount ${PARTITION}/boot
269sudo umount ${PARTITION}
270rmdir ${PARTITION}