87ea0c5519
The upstream linux-rpi package has been modified: the dtb files are now located in /boot/dtbs.
5 lines
103 B
Bash
5 lines
103 B
Bash
#!/bin/sh
|
|
|
|
cd /boot/dtbs-rpi/
|
|
find . -type f -regex ".*\.dtbo\?$" -exec install -Dm644 {} /boot/{} \;
|
|
|