0

I am using petalinux from Xilinx which builds around yocto.

I have one yocto that works fine, but is for the wrong Embedded Hardware (wrong board), and another which does not work but is for the correct board.

Therefore I would like to compare the settings in the two. The simplest but slowest way would be to iterative other Settings in the GUI, but it just seems tedious. So I am wondering if there is any way to somehow compare them by line or the config files etc.

Any help is appreciated

vermaete
  • 1,330
  • 1
  • 17
  • 28
Kev1n91
  • 3,553
  • 8
  • 46
  • 96

1 Answers1

1

You can look into each kernel recipe's WORKDIR and compare the .config files. This is exactly what is set up for the kernel to build. To make it easier to compare, running bitbake -c savedefconfig <kernel recipe> and then comparing the defconfig in WORKDIR could highlight missing "top" drivers/configurations by omitting to show their dependencies.

qschulz
  • 1,543
  • 1
  • 9
  • 10