projects
/
petitboot
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Display VERSION partition info on BMC machines
[petitboot]
/
utils
/
hooks
/
01-create-default-dtb
1
#!/bin/sh
2
3
[ -n "$boot_dtb" ] && exit;
4
[ ! -e /proc/device-tree ] && exit
5
6
dtb=$(mktemp)
7
8
dtc -I fs -O dtb -o $dtb /proc/device-tree
9
10
echo "boot_dtb=$dtb"
11
exit 2