projects
/
petitboot
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
discover/grub2: Allow to separate the --id argument using a space char
[petitboot]
/
utils
/
hooks
/
90-sort-dtb
1
#!/bin/sh
2
3
# Last pass for the DTB: sort properties.
4
5
[ -n "$boot_dtb" ] || exit
6
7
dtb_in=$boot_dtb
8
dtb_out=$(mktemp)
9
10
dtc -s -I dtb -O dtb -o $dtb_out $dtb_in
11
12
[ $? = 0 ] && mv $dtb_out $dtb_in