* [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes @ 2023-05-05 8:38 Aradhya Bhatia 2023-05-06 1:40 ` [meta-ti] " Denys Dmytriyenko 0 siblings, 1 reply; 6+ messages in thread From: Aradhya Bhatia @ 2023-05-05 8:38 UTC (permalink / raw) To: Ryan Eatmon, Denys Dmytriyenko Cc: Meta-TI List, Aradhya Bhatia, Vignesh Raghavendra, Paresh Bhagat, Sai Sree Kartheek Adivi, Gyan Gupta The DT name k3-am62-lp-sk.dts was adopted instead of k3-am62x-lp-sk.dts because the community prefers avoiding the wildcard letter 'x'.[1] Drop the letter 'x' from the strings in KERNEL_DEVICETREE_PREFIX and KERNEL_DEVICETREE to accurately reflect the DT names. Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com> [1]: https://lore.kernel.org/all/06cbcd7d-bc83-bfeb-0821-72c7caf9a5e7@linaro.org/ --- meta-ti-bsp/conf/machine/am62xx-lp-evm.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf b/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf index ba1a12a7fdb7..ce306a2a0e17 100644 --- a/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf +++ b/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf @@ -5,12 +5,12 @@ require conf/machine/include/am62xx-lp.inc KERNEL_DEVICETREE_PREFIX = " \ - ti/k3-am62x-lp \ + ti/k3-am62-lp \ ti/k3-am625-sk \ " KERNEL_DEVICETREE = " \ - ti/k3-am62x-lp-sk.dtb \ + ti/k3-am62-lp-sk.dtb \ " SPL_BINARY = "tispl.bin_HS" -- 2.40.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [meta-ti] [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes 2023-05-05 8:38 [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes Aradhya Bhatia @ 2023-05-06 1:40 ` Denys Dmytriyenko 2023-05-11 4:32 ` Aradhya Bhatia 0 siblings, 1 reply; 6+ messages in thread From: Denys Dmytriyenko @ 2023-05-06 1:40 UTC (permalink / raw) To: a-bhatia1 Cc: Ryan Eatmon, Denys Dmytriyenko, Meta-TI List, Vignesh Raghavendra, Paresh Bhagat, Sai Sree Kartheek Adivi, Gyan Gupta Couple minor comments regarding the subject tags: 1. You want to specify the target release branch, such as "kirkstone", not the intermediate branches, like "*-wip" or "*-next". 2. We want to keep master up-to-date and in most cases the change is quite straightforward and applies to both master and kirkstone, so it's best to specify that in the tag as "master/kirkstone". And testing against those branches is highly recommended! :) On Fri, May 05, 2023 at 02:08:24PM +0530, Aradhya Bhatia via lists.yoctoproject.org wrote: > The DT name k3-am62-lp-sk.dts was adopted instead of k3-am62x-lp-sk.dts > because the community prefers avoiding the wildcard letter 'x'.[1] > > Drop the letter 'x' from the strings in KERNEL_DEVICETREE_PREFIX and > KERNEL_DEVICETREE to accurately reflect the DT names. > > Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com> > > [1]: > https://lore.kernel.org/all/06cbcd7d-bc83-bfeb-0821-72c7caf9a5e7@linaro.org/ > --- > meta-ti-bsp/conf/machine/am62xx-lp-evm.conf | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf b/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf > index ba1a12a7fdb7..ce306a2a0e17 100644 > --- a/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf > +++ b/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf > @@ -5,12 +5,12 @@ > require conf/machine/include/am62xx-lp.inc > > KERNEL_DEVICETREE_PREFIX = " \ > - ti/k3-am62x-lp \ > + ti/k3-am62-lp \ > ti/k3-am625-sk \ > " > > KERNEL_DEVICETREE = " \ > - ti/k3-am62x-lp-sk.dtb \ > + ti/k3-am62-lp-sk.dtb \ > " > > SPL_BINARY = "tispl.bin_HS" > -- > 2.40.1 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-ti] [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes 2023-05-06 1:40 ` [meta-ti] " Denys Dmytriyenko @ 2023-05-11 4:32 ` Aradhya Bhatia 2023-05-12 3:00 ` Denys Dmytriyenko 0 siblings, 1 reply; 6+ messages in thread From: Aradhya Bhatia @ 2023-05-11 4:32 UTC (permalink / raw) To: Denys Dmytriyenko Cc: Ryan Eatmon, Denys Dmytriyenko, Meta-TI List, Vignesh Raghavendra, Paresh Bhagat, Sai Sree Kartheek Adivi, Gyan Gupta Hi Denys Thank you for reviewing the patch. On 06-May-23 07:10, Denys Dmytriyenko wrote: > Couple minor comments regarding the subject tags: > > 1. You want to specify the target release branch, such as "kirkstone", not the > intermediate branches, like "*-wip" or "*-next". > Yup, noted! > 2. We want to keep master up-to-date and in most cases the change is quite > straightforward and applies to both master and kirkstone, so it's best to > specify that in the tag as "master/kirkstone". And testing against those > branches is highly recommended! :) Understood! This patch was tested for kirkstone, but not for master branch. After your comment, I checked, and this patch does apply cleanly on master as well. However, I have not been able to find proper configs for oe-layer setup for the master branch, and manually changing the kirkstone config to point to master did not help either. Do you have any suggestions on how I could test the patch on master? Regards Aradhya > > > On Fri, May 05, 2023 at 02:08:24PM +0530, Aradhya Bhatia via lists.yoctoproject.org wrote: >> The DT name k3-am62-lp-sk.dts was adopted instead of k3-am62x-lp-sk.dts >> because the community prefers avoiding the wildcard letter 'x'.[1] >> >> Drop the letter 'x' from the strings in KERNEL_DEVICETREE_PREFIX and >> KERNEL_DEVICETREE to accurately reflect the DT names. >> >> Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com> >> >> [1]: >> https://lore.kernel.org/all/06cbcd7d-bc83-bfeb-0821-72c7caf9a5e7@linaro.org/ >> --- >> meta-ti-bsp/conf/machine/am62xx-lp-evm.conf | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf b/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf >> index ba1a12a7fdb7..ce306a2a0e17 100644 >> --- a/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf >> +++ b/meta-ti-bsp/conf/machine/am62xx-lp-evm.conf >> @@ -5,12 +5,12 @@ >> require conf/machine/include/am62xx-lp.inc >> >> KERNEL_DEVICETREE_PREFIX = " \ >> - ti/k3-am62x-lp \ >> + ti/k3-am62-lp \ >> ti/k3-am625-sk \ >> " >> >> KERNEL_DEVICETREE = " \ >> - ti/k3-am62x-lp-sk.dtb \ >> + ti/k3-am62-lp-sk.dtb \ >> " >> >> SPL_BINARY = "tispl.bin_HS" >> -- >> 2.40.1 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-ti] [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes 2023-05-11 4:32 ` Aradhya Bhatia @ 2023-05-12 3:00 ` Denys Dmytriyenko 2023-05-15 9:07 ` Aradhya Bhatia 0 siblings, 1 reply; 6+ messages in thread From: Denys Dmytriyenko @ 2023-05-12 3:00 UTC (permalink / raw) To: Aradhya Bhatia Cc: Ryan Eatmon, Denys Dmytriyenko, Meta-TI List, Vignesh Raghavendra, Paresh Bhagat, Sai Sree Kartheek Adivi, Gyan Gupta On Thu, May 11, 2023 at 10:02:23AM +0530, Aradhya Bhatia wrote: > Hi Denys > > Thank you for reviewing the patch. > > On 06-May-23 07:10, Denys Dmytriyenko wrote: > > Couple minor comments regarding the subject tags: > > > > 1. You want to specify the target release branch, such as "kirkstone", not the > > intermediate branches, like "*-wip" or "*-next". > > > Yup, noted! > > > 2. We want to keep master up-to-date and in most cases the change is quite > > straightforward and applies to both master and kirkstone, so it's best to > > specify that in the tag as "master/kirkstone". And testing against those > > branches is highly recommended! :) > > Understood! This patch was tested for kirkstone, but not for master > branch. > > After your comment, I checked, and this patch does apply cleanly on > master as well. However, I have not been able to find proper configs for > oe-layer setup for the master branch, and manually changing the > kirkstone config to point to master did not help either. > > Do you have any suggestions on how I could test the patch on master? If you use oe-layersetup scripts, then there are arago-kirkstone-config.txt and arago-master-config.txt config files available. Let us know if you see any issues. -- Denys ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-ti] [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes 2023-05-12 3:00 ` Denys Dmytriyenko @ 2023-05-15 9:07 ` Aradhya Bhatia 2023-05-15 13:21 ` Ryan Eatmon 0 siblings, 1 reply; 6+ messages in thread From: Aradhya Bhatia @ 2023-05-15 9:07 UTC (permalink / raw) To: Denys Dmytriyenko Cc: Ryan Eatmon, Denys Dmytriyenko, Meta-TI List, Vignesh Raghavendra, Paresh Bhagat, Sai Sree Kartheek Adivi, Gyan Gupta Hi Denys On 12-May-23 08:30, Denys Dmytriyenko wrote: > On Thu, May 11, 2023 at 10:02:23AM +0530, Aradhya Bhatia wrote: >> Hi Denys >> >> Thank you for reviewing the patch. >> >> On 06-May-23 07:10, Denys Dmytriyenko wrote: >>> Couple minor comments regarding the subject tags: >>> >>> 1. You want to specify the target release branch, such as "kirkstone", not the >>> intermediate branches, like "*-wip" or "*-next". >>> >> Yup, noted! >> >>> 2. We want to keep master up-to-date and in most cases the change is quite >>> straightforward and applies to both master and kirkstone, so it's best to >>> specify that in the tag as "master/kirkstone". And testing against those >>> branches is highly recommended! :) >> >> Understood! This patch was tested for kirkstone, but not for master >> branch. >> >> After your comment, I checked, and this patch does apply cleanly on >> master as well. However, I have not been able to find proper configs for >> oe-layer setup for the master branch, and manually changing the >> kirkstone config to point to master did not help either. >> >> Do you have any suggestions on how I could test the patch on master? > > If you use oe-layersetup scripts, then there are arago-kirkstone-config.txt > and arago-master-config.txt config files available. Let us know if you see any > issues. > Thank you! I ended up using the arago-master-wip-config.txt file for oe-layersetup. By default it takes the 5.10 branch, but making it point to the ti-linux-6.1.y-cicd:HEAD locally, the required DTBs propped up in the build. Regards Aradhya ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-ti] [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes 2023-05-15 9:07 ` Aradhya Bhatia @ 2023-05-15 13:21 ` Ryan Eatmon 0 siblings, 0 replies; 6+ messages in thread From: Ryan Eatmon @ 2023-05-15 13:21 UTC (permalink / raw) To: Aradhya Bhatia, Denys Dmytriyenko Cc: Denys Dmytriyenko, Meta-TI List, Vignesh Raghavendra, Paresh Bhagat, Sai Sree Kartheek Adivi, Gyan Gupta On 5/15/2023 4:07 AM, Aradhya Bhatia wrote: > Hi Denys > > On 12-May-23 08:30, Denys Dmytriyenko wrote: >> On Thu, May 11, 2023 at 10:02:23AM +0530, Aradhya Bhatia wrote: >>> Hi Denys >>> >>> Thank you for reviewing the patch. >>> >>> On 06-May-23 07:10, Denys Dmytriyenko wrote: >>>> Couple minor comments regarding the subject tags: >>>> >>>> 1. You want to specify the target release branch, such as "kirkstone", not the >>>> intermediate branches, like "*-wip" or "*-next". >>>> >>> Yup, noted! >>> >>>> 2. We want to keep master up-to-date and in most cases the change is quite >>>> straightforward and applies to both master and kirkstone, so it's best to >>>> specify that in the tag as "master/kirkstone". And testing against those >>>> branches is highly recommended! :) >>> >>> Understood! This patch was tested for kirkstone, but not for master >>> branch. >>> >>> After your comment, I checked, and this patch does apply cleanly on >>> master as well. However, I have not been able to find proper configs for >>> oe-layer setup for the master branch, and manually changing the >>> kirkstone config to point to master did not help either. >>> >>> Do you have any suggestions on how I could test the patch on master? >> >> If you use oe-layersetup scripts, then there are arago-kirkstone-config.txt >> and arago-master-config.txt config files available. Let us know if you see any >> issues. >> > > Thank you! I ended up using the arago-master-wip-config.txt file for > oe-layersetup. By default it takes the 5.10 branch, but making it point > to the ti-linux-6.1.y-cicd:HEAD locally, the required DTBs propped up in > the build. We have not ported the 6.1 changes to master yet as we are still working on the LTS migration on the kirkstone branch. Once we release the 6.1 kernel to kirkstone as the default we will also make the same change on master. > Regards > Aradhya -- Ryan Eatmon reatmon@ti.com ----------------------------------------- Texas Instruments, Inc. - LCPD - MGTS ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-05-15 13:21 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-05 8:38 [kirkstone-next][PATCH] meta-ti: conf: am62xx-lp-evm: Fix DT and DT prefixes Aradhya Bhatia 2023-05-06 1:40 ` [meta-ti] " Denys Dmytriyenko 2023-05-11 4:32 ` Aradhya Bhatia 2023-05-12 3:00 ` Denys Dmytriyenko 2023-05-15 9:07 ` Aradhya Bhatia 2023-05-15 13:21 ` Ryan Eatmon
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.