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