So I can build an image for the IMX28EVK using Yocto (currently 150GB of disk space for 1GB image)
Where would I find the source files that control the setup of LED2 (GPIO_3_5) as a heartbeat as well as setting it running on startup?
Lest say I wanted to configure it to run on LED 3 (GPIO_3_4) instead how would I go about that?
Pete
解決済! 解決策の投稿を見る。
Hello Peter,
you need to edit arch/arm/boot/dts/imx28-evk.dts from the kernel sources:
-linux,default-trigger = "heartbeat";
+linux,default-trigger = "default-on";
and recompile the kernel.
Hello Peter,
you need to edit arch/arm/boot/dts/imx28-evk.dts from the kernel sources:
-linux,default-trigger = "heartbeat";
+linux,default-trigger = "default-on";
and recompile the kernel.
Thanks Stefan,
I eventually figured it out, but at this confirms it.
I didn't realise so much hardware functionality was supplied as part of the kernel, I tight it would all have been vendor specific, but this makes it much more consistent.
Yes; the BSP (mainly Kernel and Bootloader) is responsible for all hardware support. The Yocto part does the integration of it and proper setup.