All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree
@ 2024-01-02 11:57 Kevin Hao
  2024-01-02 11:57 ` [PATCH 2/2] beaglebone-yocto: Remove the obsolete variables for uImage Kevin Hao
  2024-01-02 18:17 ` [poky] [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree Alexandre Belloni
  0 siblings, 2 replies; 3+ messages in thread
From: Kevin Hao @ 2024-01-02 11:57 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Robert Berger, poky

The kernel-devicetree is set in both MACHINE_ESSENTIAL_EXTRA_RDEPENDS
and MACHINE_EXTRA_RRECOMMENDS. Since it is an essential package for
boot, drop the one in MACHINE_EXTRA_RRECOMMENDS.

[YOCTO #15229]

Signed-off-by: Kevin Hao <kexin.hao@windriver.com>
---
 meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
index 9f389711b3b4..0c1741235368 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
@@ -4,7 +4,7 @@
 
 PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
 
-MACHINE_EXTRA_RRECOMMENDS = "kernel-modules kernel-devicetree"
+MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
 
 EXTRA_IMAGEDEPENDS += "virtual/bootloader"
 
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] beaglebone-yocto: Remove the obsolete variables for uImage
  2024-01-02 11:57 [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree Kevin Hao
@ 2024-01-02 11:57 ` Kevin Hao
  2024-01-02 18:17 ` [poky] [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree Alexandre Belloni
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Hao @ 2024-01-02 11:57 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Robert Berger, poky

Now we only support the zImage kernel type for this machine, so remove
the obsolete variables for uImage kernel type.

[YOCTO #15232]

Reported-by: Robert Berger <pokylinux@reliableembeddedsystems.com>
Signed-off-by: Kevin Hao <kexin.hao@windriver.com>
---
 meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
index 0c1741235368..06a49f45f76a 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
@@ -24,15 +24,12 @@ PREFERRED_VERSION_linux-yocto ?= "6.1%"
 
 KERNEL_IMAGETYPE = "zImage"
 KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb"
-KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
 
 PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
 
 SPL_BINARY = "MLO"
 UBOOT_SUFFIX = "img"
 UBOOT_MACHINE = "am335x_evm_defconfig"
-UBOOT_ENTRYPOINT = "0x80008000"
-UBOOT_LOADADDRESS = "0x80008000"
 
 MACHINE_FEATURES = "usbgadget usbhost vfat alsa"
 
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [poky] [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree
  2024-01-02 11:57 [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree Kevin Hao
  2024-01-02 11:57 ` [PATCH 2/2] beaglebone-yocto: Remove the obsolete variables for uImage Kevin Hao
@ 2024-01-02 18:17 ` Alexandre Belloni
  1 sibling, 0 replies; 3+ messages in thread
From: Alexandre Belloni @ 2024-01-02 18:17 UTC (permalink / raw)
  To: kexin.hao; +Cc: Richard Purdie, Robert Berger, poky

Please follow https://docs.yoctoproject.org/dev/contributor-guide/submit-changes.html#fixing-your-from-identity

On 02/01/2024 19:57:08+0800, Kevin Hao via lists.yoctoproject.org wrote:
> The kernel-devicetree is set in both MACHINE_ESSENTIAL_EXTRA_RDEPENDS
> and MACHINE_EXTRA_RRECOMMENDS. Since it is an essential package for
> boot, drop the one in MACHINE_EXTRA_RRECOMMENDS.
> 
> [YOCTO #15229]
> 
> Signed-off-by: Kevin Hao <kexin.hao@windriver.com>
> ---
>  meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
> index 9f389711b3b4..0c1741235368 100644
> --- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
> +++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
> @@ -4,7 +4,7 @@
>  
>  PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
>  
> -MACHINE_EXTRA_RRECOMMENDS = "kernel-modules kernel-devicetree"
> +MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
>  
>  EXTRA_IMAGEDEPENDS += "virtual/bootloader"
>  
> -- 
> 2.39.2
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#13239): https://lists.yoctoproject.org/g/poky/message/13239
> Mute This Topic: https://lists.yoctoproject.org/mt/103479682/3617179
> Group Owner: poky+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/poky/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-01-02 18:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-02 11:57 [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree Kevin Hao
2024-01-02 11:57 ` [PATCH 2/2] beaglebone-yocto: Remove the obsolete variables for uImage Kevin Hao
2024-01-02 18:17 ` [poky] [PATCH 1/2] beaglebone-yocto: Remove the redundant kernel-devicetree Alexandre Belloni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.