blob: 562512710484f67cc5570edcc2e3e0604d253758 [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
19 device-tree-compiler
20 swig
21)
22for dep in "${REQUIRED_DEPS[@]}"; do
23 if ! dpkg-query -W -f='${Status}' "${dep}" | grep -q "install ok installed"; then
24 missing_deps+=("${dep}")
25 fi
26done
27
28# Print missing dependencies
29if ((${#missing_deps[@]} != 0 )); then
30 echo "Missing dependencies, please install:"
31 echo apt install "${missing_deps[@]}"
32 exit 1
33else
34 echo -e "\033[32mAll dependencies are already installed\033[0m"
35fi
36
Austin Schuh791ac752022-11-26 19:14:39 -080037export CC=aarch64-linux-gnu-
38
39# Reset any existing mounts.
40if mount | grep "${PARTITION}/boot" >/dev/null; then
41 sudo umount "${PARTITION}/boot"
42fi
43
44if mount | grep "${PARTITION}" >/dev/null; then
45 sudo umount "${PARTITION}"
46fi
47
henry19afbff2022-12-17 18:33:40 -080048LOOPBACK="$(sudo losetup --list | awk "/$IMAGE/"'{print $1}')"
Austin Schuh791ac752022-11-26 19:14:39 -080049if [[ -n "${LOOPBACK}" ]]; then
50 echo "Loop still exists..."
51 sudo losetup -d "${LOOPBACK}"
52fi
53
54# Build bl31.elf.
55if [[ ! -e arm-trusted-firmware ]]; then
56 git clone https://github.com/ARM-software/arm-trusted-firmware --depth=1
57fi
58
59pushd arm-trusted-firmware/
60git pull --ff-only
61#make CROSS_COMPILE="${CC}" realclean -j "$(nproc)"
62make CROSS_COMPILE="${CC}" PLAT=rk3399 -j "$(nproc)"
63popd
64
65export BL31="$(pwd)/arm-trusted-firmware/build/rk3399/release/bl31/bl31.elf"
66
67ls -lah "${BL31}"
68
69# Now, build uboot.
70if [[ ! -e u-boot ]]; then
Henry Speiser823acb32023-01-21 10:56:30 -080071 git clone -b "${UBOOT_VERSION}" https://github.com/u-boot/u-boot --depth=1
Austin Schuh791ac752022-11-26 19:14:39 -080072fi
73
74pushd u-boot/
75git fetch origin "${UBOOT_VERSION}"
76git reset --hard "${UBOOT_VERSION}"
77
78#make ARCH=arm CROSS_COMPILE="${CC}" distclean -j $(nproc)
79make ARCH=arm CROSS_COMPILE="${CC}" rock-pi-4-rk3399_defconfig -j "$(nproc)"
80make ARCH=arm CROSS_COMPILE="${CC}" -j "$(nproc)"
81echo "Made uboot"
82popd
83
henry19afbff2022-12-17 18:33:40 -080084function target_mkdir() {
85 target "install -d -m $2 -o $(echo $1 | sed 's/\.[^.]*//') -g $(echo $1 | sed 's/[^.]*\.//') $3"
86}
87
88function copyfile() {
89 sudo cp contents/$3 ${PARTITION}/$3
90 sudo chmod $2 ${PARTITION}/$3
91 target "chown $1 /$3"
92}
93
Austin Schuh791ac752022-11-26 19:14:39 -080094
95# Now build the base set of partitions.
96NEW_IMAGE=0
97if [[ ! -e "${IMAGE}" ]]; then
98 NEW_IMAGE=1
99 dd if=/dev/zero of="${IMAGE}" bs=1 count=0 seek=3G
100 dd if=./u-boot/idbloader.img of="${IMAGE}" seek=64 conv=notrunc
101 dd if=./u-boot/u-boot.itb of="${IMAGE}" seek=16384 conv=notrunc
102
103 sfdisk "${IMAGE}" <<-__EOF__
10416M,64M,L,*
10580M,,L,*
106__EOF__
107
108 sudo losetup -P -f "${IMAGE}"
109 LOOPBACK="$(sudo losetup --list | grep "${IMAGE}" | awk '{print $1}')"
110
111 sudo mkfs.fat "${LOOPBACK}p1"
112 sudo mkfs.ext4 -L rootfs "${LOOPBACK}p2"
113
114 sudo losetup -d "${LOOPBACK}"
115fi
116
117
118# Mount them
119mkdir -p "${PARTITION}"
120
121sudo losetup -P -f "${IMAGE}"
122LOOPBACK="$(sudo losetup --list | grep "${IMAGE}" | awk '{print $1}')"
123sudo mount "${LOOPBACK}p2" "${PARTITION}"
124if [[ ! -e "${PARTITION}/boot" ]]; then
125 sudo mkdir "${PARTITION}/boot"
126fi
127sudo mount "${LOOPBACK}p1" "${PARTITION}/boot"
128
129# Run the string command as root inside the target.
130function target() {
131 sudo chroot --userspec=root.root "${PARTITION}" qemu-aarch64-static \
132 /bin/bash -c "$1"
133}
134
135# Run the string command as the pi user inside the target.
136function pi_target() {
137 sudo chroot --userspec=pi.pi "${PARTITION}" qemu-aarch64-static \
138 /bin/bash -c "$1"
139}
140
141# And, if we made a new image, debootstrap to get things going.
142if (( NEW_IMAGE == 1 )); then
143 sudo debootstrap --arch=arm64 --no-check-gpg --foreign bullseye \
144 "${PARTITION}" http://deb.debian.org/debian/
145 sudo cp /usr/bin/qemu-aarch64-static "${PARTITION}/usr/bin/"
146
147 target "/debootstrap/debootstrap --second-stage"
148
149 target "useradd -m -p '\$y\$j9T\$85lzhdky63CTj.two7Zj20\$pVY53UR0VebErMlm8peyrEjmxeiRw/rfXfx..9.xet1' -s /bin/bash pi"
150
151else
152 sudo cp /usr/bin/qemu-aarch64-static "${PARTITION}/usr/bin/"
153fi
154
155# Install the kernel.
156sudo rm -rf "${PARTITION}/boot/dtbs/${KERNEL_VERSION}/"
157sudo rm -rf "${PARTITION}/lib/modules/${KERNEL_VERSION}/"
158sudo mkdir -p "${PARTITION}/lib/modules/"
159sudo tar --owner=0 --group=0 --no-same-owner --no-same-permissions -xvf \
160 "linux-kernel-${KERNEL_VERSION}.tar.xz" -C "${PARTITION}/boot/" \
161 --strip-components=2 ./boot/
162sudo tar --strip-components=3 -xvf "linux-kernel-${KERNEL_VERSION}.tar.xz" \
163 -C "${PARTITION}/lib/modules/" ./lib/modules
164
165# Now, configure it to start automatically.
166sudo mkdir -p ${PARTITION}/boot/extlinux/
167cat << __EOF__ | sudo tee "${PARTITION}/boot/extlinux/extlinux.conf"
168label Linux ${KERNEL_VERSION}
169 kernel /vmlinuz-${KERNEL_VERSION}
170 append earlycon=uart8250,mmio32,0xff1a0000 earlyprintk console=ttyS2,1500000n8 root=/dev/mmcblk0p2 ro rootfstype=ext4 rootwait
171 fdtdir /dtbs/${KERNEL_VERSION}/
172__EOF__
173
174copyfile root.root 644 etc/apt/sources.list.d/bullseye-backports.list
175copyfile root.root 644 etc/apt/sources.list.d/frc971.list
176
177target "apt-get update"
178target "apt-get -y install -t bullseye-backports systemd"
Austin Schuh6283b262022-12-31 23:11:15 -0800179target "apt-get -y install -t bullseye-backports bpfcc-tools"
Austin Schuh791ac752022-11-26 19:14:39 -0800180
Austin Schuhc5300f22023-01-03 21:20:44 -0800181target "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"
182target "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"
183
184target "apt-get clean"
Austin Schuh791ac752022-11-26 19:14:39 -0800185
186target "usermod -a -G sudo pi"
187target "usermod -a -G video pi"
Austin Schuh31960d02022-12-11 16:51:14 -0800188target "localedef -i en_US -f UTF-8 en_US.UTF-8"
Austin Schuh791ac752022-11-26 19:14:39 -0800189
Austin Schuh791ac752022-11-26 19:14:39 -0800190copyfile root.root 644 etc/fstab
191copyfile root.root 440 etc/sudoers
192copyfile root.root 444 etc/default/cpufrequtils
193target_mkdir root.root 755 etc/systemd/network
194copyfile root.root 644 etc/systemd/network/eth0.network
195target_mkdir pi.pi 755 home/pi/.ssh
196copyfile pi.pi 600 home/pi/.ssh/authorized_keys
197target_mkdir root.root 700 root/bin
198copyfile root.root 500 root/bin/grow.sh
199copyfile root.root 500 root/bin/change_hostname.sh
200copyfile root.root 500 root/bin/deploy_kernel.sh
henryebe91952023-01-17 22:39:20 -0800201copyfile root.root 500 root/bin/chrt.sh
Austin Schuh791ac752022-11-26 19:14:39 -0800202copyfile root.root 644 etc/systemd/system/grow-rootfs.service
203copyfile root.root 644 etc/sysctl.d/sctp.conf
204copyfile root.root 644 etc/systemd/logind.conf
Austin Schuh6283b262022-12-31 23:11:15 -0800205copyfile root.root 555 etc/bash_completion.d/aos_dump_autocomplete
206copyfile root.root 444 etc/modules-load.d/adis16505.conf
Austin Schuh791ac752022-11-26 19:14:39 -0800207copyfile root.root 644 etc/security/limits.d/rt.conf
208copyfile root.root 644 etc/systemd/system/frc971.service
209copyfile root.root 644 etc/systemd/system/frc971chrt.service
210copyfile root.root 644 etc/systemd/system/usb-mount@.service
211copyfile root.root 644 etc/udev/rules.d/99-usb-mount.rules
Austin Schuh6283b262022-12-31 23:11:15 -0800212copyfile root.root 644 etc/udev/rules.d/99-adis16505.rules
Austin Schuhc5300f22023-01-03 21:20:44 -0800213copyfile root.root 644 etc/udev/rules.d/99-mali.rules
Austin Schuh791ac752022-11-26 19:14:39 -0800214
215target "apt-get update"
216target "apt-get -y install -t bullseye-backports systemd"
217
218target "systemctl enable systemd-networkd"
219target "systemctl enable systemd-resolved"
220target "systemctl enable grow-rootfs"
221target "systemctl enable frc971"
222target "systemctl enable frc971chrt"
223target "/root/bin/change_hostname.sh pi-971-1"
224
225
226if [[ ! -e "${PARTITION}/home/pi/.dotfiles" ]]; then
227 pi_target "cd /home/pi/ && \
228 git clone --separate-git-dir=/home/pi/.dotfiles https://github.com/AustinSchuh/.dotfiles.git tmpdotfiles && \
229 rsync --recursive --verbose --exclude .git tmpdotfiles/ /home/pi/ && \
230 rm -r tmpdotfiles && \
231 git --git-dir=/home/pi/.dotfiles/ --work-tree=/home/pi/ config --local status.showUntrackedFiles no && \
232 vim -c \":qa!\""
233
234 target "cd /root/ && \
235 git clone --separate-git-dir=/root/.dotfiles https://github.com/AustinSchuh/.dotfiles.git tmpdotfiles && \
236 rsync --recursive --verbose --exclude .git tmpdotfiles/ /root/ && rm -r tmpdotfiles && \
237 git --git-dir=/root/.dotfiles/ --work-tree=/root/ config --local status.showUntrackedFiles no && \
238 vim -c \":qa!\""
239fi
240
241target "apt-get clean"
242
243sudo chroot ${PARTITION} qemu-aarch64-static /bin/bash
244
245# TODO(austin): This appears to not be working... pi_target doesn't apper to be happy
246sudo chroot --userspec=pi.pi ${PARTITION} qemu-aarch64-static /bin/bash
247
248# TODO(austin): everything else we were doing to the pi's.
249sudo rm ${PARTITION}/usr/bin/qemu-aarch64-static
250sudo umount ${PARTITION}/boot
251sudo umount ${PARTITION}
252rmdir ${PARTITION}