summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone-experimental/recipes-core
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@xilinx.com>2021-11-02 12:25:01 -0700
committerMark Hatle <mark.hatle@xilinx.com>2021-11-11 14:42:16 -0800
commit8e157af6eaf35a5376fe9c6315a7980631aee105 (patch)
treec6d2e854c3f7b16316377f25a27a25d5b739f798 /meta-xilinx-standalone-experimental/recipes-core
parent294482da9a3dffbbe503e0ed281952659dea4da6 (diff)
downloadmeta-xilinx-8e157af6eaf35a5376fe9c6315a7980631aee105.tar.gz
meta-xilinx-setup: Fix bug in dt-process.sh, update README
The README file needed to be updated to explain the new argument syntax. Signed-off-by: Mark Hatle <mark.hatle@xilinx.com> (cherry picked from commit 4623e117c97c7a001f405ded6832ee2c4b10d7f1) Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-standalone-experimental/recipes-core')
-rw-r--r--meta-xilinx-standalone-experimental/recipes-core/meta/files/README-setup8
-rwxr-xr-xmeta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh2
2 files changed, 5 insertions, 5 deletions
diff --git a/meta-xilinx-standalone-experimental/recipes-core/meta/files/README-setup b/meta-xilinx-standalone-experimental/recipes-core/meta/files/README-setup
index 894f08c8..5ef896fe 100644
--- a/meta-xilinx-standalone-experimental/recipes-core/meta/files/README-setup
+++ b/meta-xilinx-standalone-experimental/recipes-core/meta/files/README-setup
@@ -1,4 +1,4 @@
1Document Version: 20210930 1Document Version: 20211102
2 2
3The Yocto Project setup for the new workflow is as follows. Be sure to read 3The Yocto Project setup for the new workflow is as follows. Be sure to read
4everything below, as the steps will be updated in the future if the 4everything below, as the steps will be updated in the future if the
@@ -36,10 +36,10 @@ however you may use any path you wish.
36. <build>/prestep/environment-setup-x86_64-petalinux-linux 36. <build>/prestep/environment-setup-x86_64-petalinux-linux
37 37
38# Run the script from the same directory as this README 38# Run the script from the same directory as this README
39<build>/prestep/dt-processor.sh <path_to_conf> <dtb> 39<build>/prestep/dt-processor.sh -c <conf> -s <dtb>
40 40
41# For example, zynqmp: 41# For example, zynqmp:
42# <build>/prestep/dt-processor.sh <build>/conf <device-tree>/zu-sdt/system-top.dts 42# <build>/prestep/dt-processor.sh -c <build>/conf -s <device-tree>/zu-sdt/system-top.dts
43# 43#
44# Follow the instructions returned by the script! 44# Follow the instructions returned by the script!
45# Such as: 45# Such as:
@@ -65,7 +65,7 @@ PMU_FIRMWARE_DEPLOY_DIR = "${BASE_TMPDIR}/tmp-microblaze-pmu/deploy/images/${MAC
65# OR 65# OR
66# 66#
67# Versal: 67# Versal:
68# <build>/prestep/dt-processor.sh <build>/conf <device-tree>/vck190-sdt/system-top.dts 68# <build>/prestep/dt-processor.sh -c <build>/conf -s <device-tree>/vck190-sdt/system-top.dts
69# 69#
70# Follow the instructions returned by the script! 70# Follow the instructions returned by the script!
71# Such as: 71# Such as:
diff --git a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
index 6c560ac1..4ca7baff 100755
--- a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
+++ b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
@@ -808,7 +808,7 @@ gen_local_conf() {
808 echo "To enable this, add the following to your local.conf:" 808 echo "To enable this, add the following to your local.conf:"
809 echo 809 echo
810 echo "# Adjust BASE_TMPDIR if you want to move the tmpdirs elsewhere" 810 echo "# Adjust BASE_TMPDIR if you want to move the tmpdirs elsewhere"
811 echo "BASE_TMPDIR = \"${TOPDIR}\"" 811 echo "BASE_TMPDIR = \"\${TOPDIR}\""
812 [ -n "${system_conf}" ] && echo "require ${system_conf}" 812 [ -n "${system_conf}" ] && echo "require ${system_conf}"
813 echo "SYSTEM_DTFILE = \"${system_dtb}\"" 813 echo "SYSTEM_DTFILE = \"${system_dtb}\""
814 echo "BBMULTICONFIG += \"${multiconf}\"" 814 echo "BBMULTICONFIG += \"${multiconf}\""