mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-06-11 12:34:43 +08:00
* hostname with serial number * add systemd.hostname kernel param * /etc/hostname is now a symlink * probably shouldn't have moved that * fix path * force symlink * update kernel load script to support passing in device name * remove kernel param * change hostname from tici to comma * bump kernel
8 lines
253 B
Bash
Executable File
8 lines
253 B
Bash
Executable File
#!/bin/bash -e
|
|
cd "$(dirname "$0")"
|
|
|
|
DEVICE=${DEVICE:-comma-ethernet}
|
|
|
|
scp output/boot.img $DEVICE:/tmp/
|
|
ssh $DEVICE "sudo dd if=/tmp/boot.img of=/dev/disk/by-partlabel/boot_a && sudo dd if=/tmp/boot.img of=/dev/disk/by-partlabel/boot_b && sudo reboot"
|