6 lines
129 B
Bash
6 lines
129 B
Bash
#!/bin/sh
|
|
|
|
rc-update add swclock boot
|
|
|
|
cd /boot/dtbs-rpi
|
|
find . -type f -regex ".*\.dtbo\?$" -exec install -Dm644 {} /boot/{} \;
|