On 07/24/2014 03:55 PM, Stefan Agner wrote:
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.
diff --git a/gen-uboot-script.py b/gen-uboot-script.py
@@ -107,7 +110,10 @@ if args.type == 'net': prefix='' else: load='load ${devtype} ${devnum}:${rootpart}' - prefix='/boot/' + if not args.dtbdir: + prefix='/boot/' + else: + prefix=args.dtbdir+'/' f.write(load + ' ${kernel_addr_r} ' + prefix + 'zImage\n')
I don't think this is right; it makes --dtbdir affect the value of the prefix variable, which is used for all of zImage, DTBs, and initrd. I didn't think that's what you wanted, although if it is, then (a) the option doesn't have the right name, and (b), it should presumably affect network mode too.
-- 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