Page MenuHomeFreeBSD

D18376.id.diff
No OneTemporary

D18376.id.diff

Index: head/sys/tools/fdt/make_dtb.sh
===================================================================
--- head/sys/tools/fdt/make_dtb.sh
+++ head/sys/tools/fdt/make_dtb.sh
@@ -16,12 +16,13 @@
MACHINE=$(uname -m)
fi
-: ${DTC:=dtc}
-: ${ECHO:=echo}
+: "${DTC:=dtc}"
+: "${ECHO:=echo}"
+: "${CPP:=cpp}"
for d in ${dts}; do
- dtb=${dtb_path}/`basename $d .dts`.dtb
+ dtb="${dtb_path}/$(basename "$d" .dts).dtb"
${ECHO} "converting $d -> $dtb"
- cpp -P -x assembler-with-cpp -I $S/gnu/dts/include -I $S/dts/${MACHINE} -I $S/gnu/dts/${MACHINE} -I $S/gnu/dts/ -include $d /dev/null |
- ${DTC} -@ -O dtb -o $dtb -b 0 -p 1024 -i $S/dts/${MACHINE} -i $S/gnu/dts/${MACHINE} -i $S/gnu/dts/
+ ${CPP} -P -x assembler-with-cpp -I "$S/gnu/dts/include" -I "$S/dts/${MACHINE}" -I "$S/gnu/dts/${MACHINE}" -I "$S/gnu/dts/" -include "$d" /dev/null |
+ ${DTC} -@ -O dtb -o "$dtb" -b 0 -p 1024 -i "$S/dts/${MACHINE}" -i "$S/gnu/dts/${MACHINE}" -i "$S/gnu/dts/"
done
Index: head/sys/tools/fdt/make_dtbo.sh
===================================================================
--- head/sys/tools/fdt/make_dtbo.sh
+++ head/sys/tools/fdt/make_dtbo.sh
@@ -16,12 +16,13 @@
MACHINE=$(uname -m)
fi
-: ${DTC:=dtc}
-: ${ECHO:=echo}
+: "${DTC:=dtc}"
+: "${ECHO:=echo}"
+: "${CPP:=cpp}"
for d in ${dtso}; do
- dtb=${dtbo_path}/`basename $d .dtso`.dtbo
+ dtb="${dtbo_path}/$(basename "$d" .dtso).dtbo"
${ECHO} "converting $d -> $dtb"
- cpp -P -x assembler-with-cpp -I $S/gnu/dts/include -I $S/dts/${MACHINE} -I $S/gnu/dts/${MACHINE} -include $d /dev/null |
- ${DTC} -@ -O dtb -o $dtb -i $S/dts/${MACHINE} -i $S/gnu/dts/${MACHINE}
+ ${CPP} -P -x assembler-with-cpp -I "$S/gnu/dts/include" -I "$S/dts/${MACHINE}" -I "$S/gnu/dts/${MACHINE}" -include "$d" /dev/null |
+ ${DTC} -@ -O dtb -o "$dtb" -i "$S/dts/${MACHINE}" -i "$S/gnu/dts/${MACHINE}"
done

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 21, 3:46 AM (7 h, 2 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
30058627
Default Alt Text
D18376.id.diff (1 KB)

Event Timeline