Some distribution use different folders to store the dtb files rather then storing them directly in /boot. This adds a new argument to define which folder U-Boot should search the dtb file. Signed-off-by: Stefan Agner <stefan@xxxxxxxx> --- gen-uboot-script.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gen-uboot-script.py b/gen-uboot-script.py index 8ca3d01..74a42a8 100755 --- a/gen-uboot-script.py +++ b/gen-uboot-script.py @@ -71,6 +71,9 @@ parser.add_argument('--noisy', action='store_true', parser.add_argument('--cmdline', help='Extra command-line options') +parser.add_argument('--dtb-dir', dest='dtbdir', default='/boot', + help='Search directory for dtbs on target; defaults to /boot') + args = parser.parse_args() if args.debug: print args @@ -126,7 +129,7 @@ else set _fdt ${soc}-${board}${boardver}.dtb; fi ''') -f.write(load + ' ${fdt_addr_r} ' + prefix + '${_fdt}\n') +f.write(load + ' ${fdt_addr_r} ' + args.dtbdir + '/${_fdt}\n') f.write('set _fdt\n') bootargs = '' -- 2.0.2 -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html