[linux-yocto] [PATCH] nxp-s32g2xx: update kernel config

2021-03-14 Thread Meng Li
From: Meng Li 

Verdor sdk version upgrade to BSP28, so update kernel
configs accordingly.

Signed-off-by: Meng Li 
---
 bsp/nxp-s32g2xx/nxp-s32g2xx.cfg | 4 
 1 file changed, 4 insertions(+)

diff --git a/bsp/nxp-s32g2xx/nxp-s32g2xx.cfg b/bsp/nxp-s32g2xx/nxp-s32g2xx.cfg
index 0f195b38..bb65ca0c 100644
--- a/bsp/nxp-s32g2xx/nxp-s32g2xx.cfg
+++ b/bsp/nxp-s32g2xx/nxp-s32g2xx.cfg
@@ -42,6 +42,7 @@ CONFIG_STMMAC_ETH=y
 CONFIG_AT803X_PHY=y
 CONFIG_MICREL_PHY=y
 CONFIG_NXP_TJA110X_PHY=m
+CONFIG_AQUANTIA_PHY=y
 
 #Serial
 CONFIG_SERIAL_AMBA_PL011=y
@@ -146,3 +147,6 @@ CONFIG_SAC58R_WDT=y
 CONFIG_NVM=y
 CONFIG_BLK_DEV_NVME=y
 CONFIG_NVME_TARGET=y
+
+#LLCE
+CONFIG_CAN_LLCE=m
-- 
2.17.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#9546): 
https://lists.yoctoproject.org/g/linux-yocto/message/9546
Mute This Topic: https://lists.yoctoproject.org/mt/81342250/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[linux-yocto][yocto-kernel-cache][yocto-5.4][PATCH] features/thunderbolt: change thunderbolt to usb4

2021-03-14 Thread LiweiSong
CONFIG_THUNDERBOLT has changed to CONFIG_USB4, adjust it
in kernel-cache. And enable USB4_DEBUGFS_WRITE=m

Signed-off-by: Liwei Song 
---
 features/thunderbolt/thunderbolt.cfg | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/features/thunderbolt/thunderbolt.cfg 
b/features/thunderbolt/thunderbolt.cfg
index 2408da5b3191..9247ac177be1 100644
--- a/features/thunderbolt/thunderbolt.cfg
+++ b/features/thunderbolt/thunderbolt.cfg
@@ -1,2 +1,3 @@
 # SPDX-License-Identifier: MIT
-CONFIG_THUNDERBOLT=m
+CONFIG_USB4=m
+CONFIG_USB4_DEBUGFS_WRITE=y
-- 
2.17.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#9544): 
https://lists.yoctoproject.org/g/linux-yocto/message/9544
Mute This Topic: https://lists.yoctoproject.org/mt/81340967/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] How can I create a truly minimal distribution that runs entirely from RAM?

2021-03-14 Thread p32 via lists.yoctoproject.org
Thank you very much. I figured out that you can have Yocto create a suitable 
U-Boot wrapper as follows (from the image recipe):
IMAGE_FSTYPES = "cpio.xz.u-boot"

Now there is only one last issue that I wasn't able to solve yet: I would like 
Yocto to not only generate this U-Boot file but also add it to the boot 
partition of a wic.gz image. I tried to extend the image recipe as follows:
IMAGE_FSTYPES = "cpio.xz.u-boot wic.gz"
IMAGE_BOOT_FILES_append += "${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.cpio.xz.u-boot"

Unfortunately, there is a dependency issue here. BitBake schedules the 
do_image_wic task before the do_image_cpio task, which creates the u-boot file. 
I tried to fix it as follows (from the image recipe):
do_image_wic[depends] = "my-image-recipe:do_image_cpio"

While the dependency graph acknowledges this dependency, BitBake does not seem 
to care about it. Whatever I try, do_image_wic is always executed first and, 
obviously, does not succeed. I think the problem is comparable to the unsolved 
one outlined here:
https://stackoverflow.com/questions/58954170/yocto-creating-a-dependency-for-wic-to-cpio-gz-image

How can I instruct Yocto to execute do_image_cpio first?

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#52707): https://lists.yoctoproject.org/g/yocto/message/52707
Mute This Topic: https://lists.yoctoproject.org/mt/81241640/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-