Re: Failing to patch u-boot .dts
Jonas Vautherin
Finally understood how to do it properly, and hence explaining here for the record. In my machine configuration, I have this line (that I overlooked): ``` IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} MLO zImage am335x-pocketbeagle.dtb" ``` Which says that it should use the `am335x-pocketbeagle` device tree. I assume that it infers that it should compile `am335x-pocketbeagle.dts` into `am335x-pocketbeagle.dtb`. Because `am335x-evm` is listed as the default in the defconfig, I thought it was the one being used. But I was wrong. I patched `am335x-pocketbeagle.dts` this time and it just worked.
On Thu, Mar 11, 2021 at 11:28 AM Jonas Vautherin <jonas.vautherin@...> wrote:
|
|