diff options
author | Nava kishore Manne <nava.manne@xilinx.com> | 2022-05-23 17:22:42 +0530 |
---|---|---|
committer | Mark Hatle <mhatle@xilinx.com> | 2022-05-23 10:32:06 -0700 |
commit | 50856529876064a717fa970fa2eb4835631680f8 (patch) | |
tree | 30a70430491f22a5b8fcc88d5025227a340bedb5 /meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c | |
parent | b3470a5676ffb13addb446d0e8842e83b9c05eb2 (diff) | |
download | meta-xilinx-50856529876064a717fa970fa2eb4835631680f8.tar.gz |
fpgautil: Update the fpgautil help
This patch updates the fpgautil help to describe the usage of
fpgautil -R
Signed-off-by: Nava kishore Manne <nava.manne@xilinx.com>
Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c')
-rw-r--r-- | meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c b/meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c index 0b77569d..e4fb1d2f 100644 --- a/meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c +++ b/meta-xilinx-core/recipes-bsp/fpga-manager-script/files/fpgautil.c | |||
@@ -123,6 +123,12 @@ void print_usage(char *prg) | |||
123 | fprintf(stderr, "(Read PL Configuration Registers)\n"); | 123 | fprintf(stderr, "(Read PL Configuration Registers)\n"); |
124 | fprintf(stderr, "%s -b top.bit.bin -r\n", prg); | 124 | fprintf(stderr, "%s -b top.bit.bin -r\n", prg); |
125 | } | 125 | } |
126 | |||
127 | fprintf(stderr, "(Remove Partial Overlay)\n"); | ||
128 | fprintf(stderr, "%s -R -n PR0\n", prg); | ||
129 | fprintf(stderr, "(Remove Full Overlay)\n"); | ||
130 | fprintf(stderr, "%s -R -n Full\n", prg); | ||
131 | fprintf(stderr, "Note: %s -R is responsible for only removing the dtbo file from the livetree. it will not remove the PL logic from the FPGA region.\n", prg); | ||
126 | fprintf(stderr, " \n"); | 132 | fprintf(stderr, " \n"); |
127 | } | 133 | } |
128 | 134 | ||