diff mbox series

[meta-lts-mixins,wrynose/linux-firmware,5/5] README: ajust formating and add note about fixing license syntax

Message ID 20260814104943.3261-5-jose.quaresma@oss.qualcomm.com
State New
Headers show
Series [meta-lts-mixins,wrynose/linux-firmware,1/5] linux-firmware: Convert to SPDX license strings | expand

Commit Message

Jose Quaresma Aug. 14, 2026, 10:49 a.m. UTC
Signed-off-by: Jose Quaresma <jose.quaresma@oss.qualcomm.com>
---
 README.md | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/README.md b/README.md
index ef6f019..81eb6bf 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@ 
 meta-lts-mixins - wrynose/linux-firmware
-================================
+========================================
 
 "Mixin" layer for adding latest Linux firmware into the Yocto Project LTS.
 
@@ -27,13 +27,27 @@  This layer depends on:
   layers: meta
     branch: wrynose
 
-Contributing
-------------
+Backporting
+-----------
 
 The patches can be backported from openembedded-core with:
 
- git -C ../openembedded-core format-patch --stdout -1 origin/master meta/recipes-kernel/linux-firmware | \
+```
+ git -C ../openembedded-core format-patch --stdout -1 \
+   origin/master meta/recipes-kernel/linux-firmware | \
   git am --signoff -p4 --directory=recipes-kernel/linux-firmware
+```
+
+There are breaking changes in master in the license syntax,
+they can be can fixed with:
+
+```
+ sed -i -e 's/AND /\& /g' -e 's/LicenseRef-//g' */*/*.bb && \
+  git commit -s -m "linux-firmware: fix license syntax" -a
+```
+
+Contributing
+------------
 
   The yocto-patches mailinglist (yocto-patches@lists.yoctoproject.org) is used
   for questions, comments and patch review. It is subscriber only, so please
@@ -43,7 +57,12 @@  The patches can be backported from openembedded-core with:
   '[meta-lts-mixins][wrynose/linux-firmware]' in the subject.
 
   When sending single patches, please use something like:
-  git send-email -M -1 --to=yocto-patches@lists.yoctoproject.org --subject-prefix='meta-lts-mixins][wrynose/linux-firmware][PATCH'
+
+```
+  git send-email -M origin/wrynose/linux-firmware \
+   --to=yocto-patches@lists.yoctoproject.org \
+   --subject-prefix='meta-lts-mixins][wrynose/linux-firmware][PATCH'
+```
 
 Maintenance
 -----------