6 lines
63 B
Bash
6 lines
63 B
Bash
#!/bin/sh
|
|
|
|
for i in /env/overlay/*.dtbo; do
|
|
oftree -o $i
|
|
done
|