cip-dev.lists.cip-project.org archive mirror
 help / color / mirror / Atom feed
* [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes
@ 2021-01-18 15:06 Quirin Gylstorff
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 1/4] swupdate: enable cross-compile by setting PKG_CONFIG_PATH Quirin Gylstorff
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Quirin Gylstorff @ 2021-01-18 15:06 UTC (permalink / raw)
  To: cip-dev, Jan.Kiszka; +Cc: Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 1566 bytes --]

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>


- Update Kernel releases
- Update ISAR to current HEAD of next

- fix swupdate cross-compile
- use libubootenv for swupdate & u-boot this works only with upstream u-boot-tools
  newer than 2019.10. The isar build is fixed with commit e77d030ed0ac5b122aa7b798131062946cb36699.

Changes V2:
- fix recipe name,  add missing rt

Quirin Gylstorff (4):
  swupdate: enable cross-compile by setting PKG_CONFIG_PATH
  swupdate: use libubootenv
  update linux kernels
  kas: update ISAR

 classes/swupdate-config.bbclass                             | 6 +++---
 kas-cip.yml                                                 | 2 +-
 recipes-core/swupdate/files/debian/rules.tmpl               | 1 +
 recipes-core/swupdate/swupdate.bb                           | 2 +-
 ...35-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} | 4 ++--
 ...231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} | 4 ++--
 ...ux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} | 4 ++--
 ...inux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} | 4 ++--
 8 files changed, 14 insertions(+), 13 deletions(-)
 rename recipes-kernel/linux/{linux-cip-rt_4.19.135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} (54%)
 rename recipes-kernel/linux/{linux-cip-rt_4.4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} (54%)
 rename recipes-kernel/linux/{linux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} (53%)
 rename recipes-kernel/linux/{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} (53%)

-- 
2.20.1


[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6102): https://lists.cip-project.org/g/cip-dev/message/6102
Mute This Topic: https://lists.cip-project.org/mt/79924716/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* [cip-dev][isar-cip-core][PATCH v2 1/4] swupdate: enable cross-compile by setting PKG_CONFIG_PATH
  2021-01-18 15:06 [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Quirin Gylstorff
@ 2021-01-18 15:06 ` Quirin Gylstorff
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 2/4] swupdate: use libubootenv Quirin Gylstorff
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Quirin Gylstorff @ 2021-01-18 15:06 UTC (permalink / raw)
  To: cip-dev, Jan.Kiszka; +Cc: Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 2094 bytes --]

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

If cross compiling should be used the configuration path
for pkgconfig needs to be adapted for the target architecture.

Add pkg-config as build dependency.

Fix typo in swupdate.bb.

Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
 classes/swupdate-config.bbclass               | 2 +-
 recipes-core/swupdate/files/debian/rules.tmpl | 1 +
 recipes-core/swupdate/swupdate.bb             | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/classes/swupdate-config.bbclass b/classes/swupdate-config.bbclass
index 42f0654..208d240 100644
--- a/classes/swupdate-config.bbclass
+++ b/classes/swupdate-config.bbclass
@@ -15,7 +15,7 @@ inherit kconfig-snippets
 
 BUILD_DEB_DEPENDS = " \
     zlib1g-dev, debhelper, libconfig-dev, libarchive-dev, \
-    python-sphinx:native, dh-systemd, libsystemd-dev, libssl-dev"
+    python-sphinx:native, dh-systemd, libsystemd-dev, libssl-dev, pkg-config"
 
 KFEATURE_lua = ""
 KFEATURE_lua[BUILD_DEB_DEPENDS] = "liblua5.3-dev"
diff --git a/recipes-core/swupdate/files/debian/rules.tmpl b/recipes-core/swupdate/files/debian/rules.tmpl
index 54cca57..ec83a88 100755
--- a/recipes-core/swupdate/files/debian/rules.tmpl
+++ b/recipes-core/swupdate/files/debian/rules.tmpl
@@ -2,6 +2,7 @@
 
 ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
 export CROSS_COMPILE=$(DEB_HOST_GNU_TYPE)-
+export PKG_CONFIG_PATH=/usr/lib/$(DEB_HOST_GNU_TYPE)/pkgconfig
 export CC=$(DEB_HOST_GNU_TYPE)-gcc
 export LD=$(DEB_HOST_GNU_TYPE)-gcc
 endif
diff --git a/recipes-core/swupdate/swupdate.bb b/recipes-core/swupdate/swupdate.bb
index dd02cc2..b4d64fe 100644
--- a/recipes-core/swupdate/swupdate.bb
+++ b/recipes-core/swupdate/swupdate.bb
@@ -8,7 +8,7 @@
 #
 # SPDX-License-Identifier: MIT
 
-hDESCRIPTION = "swupdate utility for software updates"
+DESCRIPTION = "swupdate utility for software updates"
 HOMEPAGE= "https://github.com/sbabic/swupdate"
 LICENSE = "GPL-2.0"
 LIC_FILES_CHKSUM = "file://${LAYERDIR_isar}/licenses/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe"
-- 
2.20.1


[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6101): https://lists.cip-project.org/g/cip-dev/message/6101
Mute This Topic: https://lists.cip-project.org/mt/79924715/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* [cip-dev][isar-cip-core][PATCH v2 2/4] swupdate: use libubootenv
  2021-01-18 15:06 [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Quirin Gylstorff
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 1/4] swupdate: enable cross-compile by setting PKG_CONFIG_PATH Quirin Gylstorff
@ 2021-01-18 15:06 ` Quirin Gylstorff
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels Quirin Gylstorff
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Quirin Gylstorff @ 2021-01-18 15:06 UTC (permalink / raw)
  To: cip-dev, Jan.Kiszka; +Cc: Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 1037 bytes --]

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

libubootenv provides hardware independent access to u-boot environments.
This change conflicts with u-boot tools < 10.2019.

Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
 classes/swupdate-config.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/classes/swupdate-config.bbclass b/classes/swupdate-config.bbclass
index 208d240..dd0317f 100644
--- a/classes/swupdate-config.bbclass
+++ b/classes/swupdate-config.bbclass
@@ -46,8 +46,8 @@ KFEATURE_ubi[KCONFIG_SNIPPETS] = "file://swupdate_defconfig_ubi.snippet"
 KFEATURE_DEPS[ubi] = "mtd"
 
 KFEATURE_u-boot = ""
-KFEATURE_u-boot[BUILD_DEB_DEPENDS] = "u-boot-${MACHINE}-dev"
-KFEATURE_u-boot[DEBIAN_DEPENDS] = "u-boot-tools"
+KFEATURE_u-boot[BUILD_DEB_DEPENDS] = "libubootenv-dev"
+KFEATURE_u-boot[DEBIAN_DEPENDS] = "libubootenv-tool, u-boot-tools"
 KFEATURE_u-boot[DEPENDS] = "${U_BOOT}"
 KFEATURE_u-boot[KCONFIG_SNIPPETS] = "file://swupdate_defconfig_u-boot.snippet"
 
-- 
2.20.1


[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6104): https://lists.cip-project.org/g/cip-dev/message/6104
Mute This Topic: https://lists.cip-project.org/mt/79924718/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels
  2021-01-18 15:06 [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Quirin Gylstorff
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 1/4] swupdate: enable cross-compile by setting PKG_CONFIG_PATH Quirin Gylstorff
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 2/4] swupdate: use libubootenv Quirin Gylstorff
@ 2021-01-18 15:06 ` Quirin Gylstorff
  2021-01-18 17:44   ` Jan Kiszka
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 4/4] kas: update ISAR Quirin Gylstorff
  2021-01-18 17:17 ` [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Jan Kiszka
  4 siblings, 1 reply; 8+ messages in thread
From: Quirin Gylstorff @ 2021-01-18 15:06 UTC (permalink / raw)
  To: cip-dev, Jan.Kiszka; +Cc: Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 4195 bytes --]

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
 ....135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} | 4 ++--
 ...4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} | 4 ++--
 ...inux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} | 4 ++--
 ...{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)
 rename recipes-kernel/linux/{linux-cip-rt_4.19.135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} (54%)
 rename recipes-kernel/linux/{linux-cip-rt_4.4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} (54%)
 rename recipes-kernel/linux/{linux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} (53%)
 rename recipes-kernel/linux/{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} (53%)

diff --git a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
similarity index 54%
rename from recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
rename to recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
index 820c1ab..3c0aea5 100644
--- a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
+++ b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
@@ -1,7 +1,7 @@
 #
 # CIP Core, generic profile
 #
-# Copyright (c) Siemens AG, 2019
+# Copyright (c) Siemens AG, 2019 - 2021
 #
 # Authors:
 #  Jan Kiszka <jan.kiszka@siemens.com>
@@ -11,4 +11,4 @@
 
 require linux-cip-rt-common.inc
 
-SRC_URI[sha256sum] = "b827f45b8f97b71b3917c84b43fd6593030d01ea7261d3be6c15a76250308743"
+SRC_URI[sha256sum] = "c2e0f50670c298aed94c35628caf4ddf0eefc20d2f17e0a5f024bf4d99a38460"
diff --git a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb b/recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
similarity index 54%
rename from recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
rename to recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
index e13fc14..6679144 100644
--- a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
+++ b/recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
@@ -1,7 +1,7 @@
 #
 # CIP Core, generic profile
 #
-# Copyright (c) Siemens AG, 2019
+# Copyright (c) Siemens AG, 2019 - 2021
 #
 # Authors:
 #  Jan Kiszka <jan.kiszka@siemens.com>
@@ -11,4 +11,4 @@
 
 require linux-cip-rt-common.inc
 
-SRC_URI[sha256sum] = "e7a0c7b8e4d91f52cbc2ee17a546d1afbc5fcfed95ba44dd113e534fab3a157e"
+SRC_URI[sha256sum] = "070dc2084d2a64c1c8d64382978ec01ed7875b012401d09f37428a9c8c52b9c3"
diff --git a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
similarity index 53%
rename from recipes-kernel/linux/linux-cip_4.19.140-cip33.bb
rename to recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
index 9e958c0..f19b4c3 100644
--- a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb
+++ b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
@@ -1,7 +1,7 @@
 #
 # CIP Core, generic profile
 #
-# Copyright (c) Siemens AG, 2019
+# Copyright (c) Siemens AG, 2019 - 2021
 #
 # Authors:
 #  Jan Kiszka <jan.kiszka@siemens.com>
@@ -11,4 +11,4 @@
 
 require linux-cip-common.inc
 
-SRC_URI[sha256sum] = "f6a9aec6848a5897c90bafda5a9eba010c03d5d0cf99508adfb1cf7a2f4af9e5"
+SRC_URI[sha256sum] = "c1404d0a0a1ba71656c237d6d606714d34364814dc9a3998add93fe1749cb27d"
diff --git a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
similarity index 53%
rename from recipes-kernel/linux/linux-cip_4.4.230-cip47.bb
rename to recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
index af49441..03b1a04 100644
--- a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb
+++ b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
@@ -1,7 +1,7 @@
 #
 # CIP Core, generic profile
 #
-# Copyright (c) Siemens AG, 2019
+# Copyright (c) Siemens AG, 2019 - 2021
 #
 # Authors:
 #  Jan Kiszka <jan.kiszka@siemens.com>
@@ -11,4 +11,4 @@
 
 require linux-cip-common.inc
 
-SRC_URI[sha256sum] = "3ff33e497064ba8e7d9b5e1ee575c6a936154fa8216774782cbc0db2e4b71cdf"
+SRC_URI[sha256sum] = "f8a6eba35572da13c81fec6c2d451db8f75b0ab4a5b6b80113523fbb035bf384"
-- 
2.20.1


[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6103): https://lists.cip-project.org/g/cip-dev/message/6103
Mute This Topic: https://lists.cip-project.org/mt/79924717/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* [cip-dev][isar-cip-core][PATCH v2 4/4] kas: update ISAR
  2021-01-18 15:06 [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Quirin Gylstorff
                   ` (2 preceding siblings ...)
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels Quirin Gylstorff
@ 2021-01-18 15:06 ` Quirin Gylstorff
  2021-01-18 17:17 ` [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Jan Kiszka
  4 siblings, 0 replies; 8+ messages in thread
From: Quirin Gylstorff @ 2021-01-18 15:06 UTC (permalink / raw)
  To: cip-dev, Jan.Kiszka; +Cc: Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 538 bytes --]

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
 kas-cip.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kas-cip.yml b/kas-cip.yml
index f50cd6c..9514083 100644
--- a/kas-cip.yml
+++ b/kas-cip.yml
@@ -22,7 +22,7 @@ repos:
 
   isar:
     url: https://github.com/ilbers/isar.git
-    refspec: 76eac233f1b1d0d117b3f05b3dec8a6da1cdf4c7
+    refspec: cd1327a47a7b00df98eded582aaf5b1ebdd45628
     layers:
       meta:
     patches:
-- 
2.20.1


[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6105): https://lists.cip-project.org/g/cip-dev/message/6105
Mute This Topic: https://lists.cip-project.org/mt/79924719/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* Re: [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes
  2021-01-18 15:06 [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Quirin Gylstorff
                   ` (3 preceding siblings ...)
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 4/4] kas: update ISAR Quirin Gylstorff
@ 2021-01-18 17:17 ` Jan Kiszka
  4 siblings, 0 replies; 8+ messages in thread
From: Jan Kiszka @ 2021-01-18 17:17 UTC (permalink / raw)
  To: cip-dev, Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 1756 bytes --]

On 18.01.21 16:06, Quirin Gylstorff wrote:
> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> 
> 
> - Update Kernel releases
> - Update ISAR to current HEAD of next
> 
> - fix swupdate cross-compile
> - use libubootenv for swupdate & u-boot this works only with upstream u-boot-tools
>   newer than 2019.10. The isar build is fixed with commit e77d030ed0ac5b122aa7b798131062946cb36699.
> 
> Changes V2:
> - fix recipe name,  add missing rt
> 
> Quirin Gylstorff (4):
>   swupdate: enable cross-compile by setting PKG_CONFIG_PATH
>   swupdate: use libubootenv
>   update linux kernels
>   kas: update ISAR
> 
>  classes/swupdate-config.bbclass                             | 6 +++---
>  kas-cip.yml                                                 | 2 +-
>  recipes-core/swupdate/files/debian/rules.tmpl               | 1 +
>  recipes-core/swupdate/swupdate.bb                           | 2 +-
>  ...35-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} | 4 ++--
>  ...231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} | 4 ++--
>  ...ux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} | 4 ++--
>  ...inux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} | 4 ++--
>  8 files changed, 14 insertions(+), 13 deletions(-)
>  rename recipes-kernel/linux/{linux-cip-rt_4.19.135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} (54%)
>  rename recipes-kernel/linux/{linux-cip-rt_4.4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} (54%)
>  rename recipes-kernel/linux/{linux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} (53%)
>  rename recipes-kernel/linux/{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} (53%)
> 

Thanks, applied.

Jan

-- 
Siemens AG, T RDA IOT
Corporate Competence Center Embedded Linux

[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6107): https://lists.cip-project.org/g/cip-dev/message/6107
Mute This Topic: https://lists.cip-project.org/mt/79924716/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* Re: [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels
  2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels Quirin Gylstorff
@ 2021-01-18 17:44   ` Jan Kiszka
  2021-01-18 22:10     ` Chris Paterson
  0 siblings, 1 reply; 8+ messages in thread
From: Jan Kiszka @ 2021-01-18 17:44 UTC (permalink / raw)
  To: cip-dev, Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 4731 bytes --]

On 18.01.21 16:06, Quirin Gylstorff wrote:
> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> 
> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> ---
>  ....135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} | 4 ++--
>  ...4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} | 4 ++--
>  ...inux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} | 4 ++--
>  ...{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} | 4 ++--
>  4 files changed, 8 insertions(+), 8 deletions(-)
>  rename recipes-kernel/linux/{linux-cip-rt_4.19.135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} (54%)
>  rename recipes-kernel/linux/{linux-cip-rt_4.4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} (54%)
>  rename recipes-kernel/linux/{linux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} (53%)
>  rename recipes-kernel/linux/{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} (53%)
> 
> diff --git a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
> similarity index 54%
> rename from recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
> rename to recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
> index 820c1ab..3c0aea5 100644
> --- a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
> +++ b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
> @@ -1,7 +1,7 @@
>  #
>  # CIP Core, generic profile
>  #
> -# Copyright (c) Siemens AG, 2019
> +# Copyright (c) Siemens AG, 2019 - 2021
>  #
>  # Authors:
>  #  Jan Kiszka <jan.kiszka@siemens.com>
> @@ -11,4 +11,4 @@
>  
>  require linux-cip-rt-common.inc
>  
> -SRC_URI[sha256sum] = "b827f45b8f97b71b3917c84b43fd6593030d01ea7261d3be6c15a76250308743"
> +SRC_URI[sha256sum] = "c2e0f50670c298aed94c35628caf4ddf0eefc20d2f17e0a5f024bf4d99a38460"
> diff --git a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb b/recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
> similarity index 54%
> rename from recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
> rename to recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
> index e13fc14..6679144 100644
> --- a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
> +++ b/recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
> @@ -1,7 +1,7 @@
>  #
>  # CIP Core, generic profile
>  #
> -# Copyright (c) Siemens AG, 2019
> +# Copyright (c) Siemens AG, 2019 - 2021
>  #
>  # Authors:
>  #  Jan Kiszka <jan.kiszka@siemens.com>
> @@ -11,4 +11,4 @@
>  
>  require linux-cip-rt-common.inc
>  
> -SRC_URI[sha256sum] = "e7a0c7b8e4d91f52cbc2ee17a546d1afbc5fcfed95ba44dd113e534fab3a157e"
> +SRC_URI[sha256sum] = "070dc2084d2a64c1c8d64382978ec01ed7875b012401d09f37428a9c8c52b9c3"
> diff --git a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
> similarity index 53%
> rename from recipes-kernel/linux/linux-cip_4.19.140-cip33.bb
> rename to recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
> index 9e958c0..f19b4c3 100644
> --- a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb
> +++ b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
> @@ -1,7 +1,7 @@
>  #
>  # CIP Core, generic profile
>  #
> -# Copyright (c) Siemens AG, 2019
> +# Copyright (c) Siemens AG, 2019 - 2021
>  #
>  # Authors:
>  #  Jan Kiszka <jan.kiszka@siemens.com>
> @@ -11,4 +11,4 @@
>  
>  require linux-cip-common.inc
>  
> -SRC_URI[sha256sum] = "f6a9aec6848a5897c90bafda5a9eba010c03d5d0cf99508adfb1cf7a2f4af9e5"
> +SRC_URI[sha256sum] = "c1404d0a0a1ba71656c237d6d606714d34364814dc9a3998add93fe1749cb27d"
> diff --git a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
> similarity index 53%
> rename from recipes-kernel/linux/linux-cip_4.4.230-cip47.bb
> rename to recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
> index af49441..03b1a04 100644
> --- a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb
> +++ b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
> @@ -1,7 +1,7 @@
>  #
>  # CIP Core, generic profile
>  #
> -# Copyright (c) Siemens AG, 2019
> +# Copyright (c) Siemens AG, 2019 - 2021
>  #
>  # Authors:
>  #  Jan Kiszka <jan.kiszka@siemens.com>
> @@ -11,4 +11,4 @@
>  
>  require linux-cip-common.inc
>  
> -SRC_URI[sha256sum] = "3ff33e497064ba8e7d9b5e1ee575c6a936154fa8216774782cbc0db2e4b71cdf"
> +SRC_URI[sha256sum] = "f8a6eba35572da13c81fec6c2d451db8f75b0ab4a5b6b80113523fbb035bf384"
> 
> 

Something is still broken, see
https://gitlab.com/cip-project/cip-core/isar-cip-core/-/jobs/970301333
and https://gitlab.com/cip-project/cip-core/isar-cip-core/-/jobs/970301342.

Pulling this patch out of next for now.

Jan

-- 
Siemens AG, T RDA IOT
Corporate Competence Center Embedded Linux

[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6108): https://lists.cip-project.org/g/cip-dev/message/6108
Mute This Topic: https://lists.cip-project.org/mt/79924717/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

* Re: [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels
  2021-01-18 17:44   ` Jan Kiszka
@ 2021-01-18 22:10     ` Chris Paterson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Paterson @ 2021-01-18 22:10 UTC (permalink / raw)
  To: cip-dev, Quirin Gylstorff

[-- Attachment #1: Type: text/plain, Size: 6319 bytes --]

Hello,

> From: cip-dev@lists.cip-project.org <cip-dev@lists.cip-project.org> On
> Behalf Of Jan Kiszka via lists.cip-project.org
> Sent: 18 January 2021 17:45
> 
> On 18.01.21 16:06, Quirin Gylstorff wrote:
> > From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> >
> > Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> > ---
> >  ....135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} | 4 ++--
> >  ...4.231-cip47-rt30.bb => linux-cip-rt_4.4.244.cip51-rt32.bb} | 4 ++--
> >  ...inux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} | 4 ++--
> >  ...{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} | 4 ++--
> >  4 files changed, 8 insertions(+), 8 deletions(-)
> >  rename recipes-kernel/linux/{linux-cip-rt_4.19.135-cip31-rt13.bb => linux-
> cip-rt_4.19.160-cip39-rt17.bb} (54%)
> >  rename recipes-kernel/linux/{linux-cip-rt_4.4.231-cip47-rt30.bb => linux-
> cip-rt_4.4.244.cip51-rt32.bb} (54%)

This is where the issue is.
The new filename is using a '.' instead of a '-'.
i.e.
- linux-cip-rt_4.4.244.cip51-rt32.bb
+ linux-cip-rt_4.4.244-cip51-rt32.bb
 
Kind regards, Chris

> >  rename recipes-kernel/linux/{linux-cip_4.19.140-cip33.bb => linux-
> cip_4.19.165-cip41.bb} (53%)
> >  rename recipes-kernel/linux/{linux-cip_4.4.230-cip47.bb => linux-
> cip_4.4.249-cip53.bb} (53%)
> >
> > diff --git a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
> b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
> > similarity index 54%
> > rename from recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
> > rename to recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
> > index 820c1ab..3c0aea5 100644
> > --- a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb
> > +++ b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb
> > @@ -1,7 +1,7 @@
> >  #
> >  # CIP Core, generic profile
> >  #
> > -# Copyright (c) Siemens AG, 2019
> > +# Copyright (c) Siemens AG, 2019 - 2021
> >  #
> >  # Authors:
> >  #  Jan Kiszka <jan.kiszka@siemens.com>
> > @@ -11,4 +11,4 @@
> >
> >  require linux-cip-rt-common.inc
> >
> > -SRC_URI[sha256sum] =
> "b827f45b8f97b71b3917c84b43fd6593030d01ea7261d3be6c15a76250308743"
> > +SRC_URI[sha256sum] =
> "c2e0f50670c298aed94c35628caf4ddf0eefc20d2f17e0a5f024bf4d99a38460"
> > diff --git a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
> b/recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
> > similarity index 54%
> > rename from recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
> > rename to recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
> > index e13fc14..6679144 100644
> > --- a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb
> > +++ b/recipes-kernel/linux/linux-cip-rt_4.4.244.cip51-rt32.bb
> > @@ -1,7 +1,7 @@
> >  #
> >  # CIP Core, generic profile
> >  #
> > -# Copyright (c) Siemens AG, 2019
> > +# Copyright (c) Siemens AG, 2019 - 2021
> >  #
> >  # Authors:
> >  #  Jan Kiszka <jan.kiszka@siemens.com>
> > @@ -11,4 +11,4 @@
> >
> >  require linux-cip-rt-common.inc
> >
> > -SRC_URI[sha256sum] =
> "e7a0c7b8e4d91f52cbc2ee17a546d1afbc5fcfed95ba44dd113e534fab3a157e"
> > +SRC_URI[sha256sum] =
> "070dc2084d2a64c1c8d64382978ec01ed7875b012401d09f37428a9c8c52b9c3"
> > diff --git a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb b/recipes-
> kernel/linux/linux-cip_4.19.165-cip41.bb
> > similarity index 53%
> > rename from recipes-kernel/linux/linux-cip_4.19.140-cip33.bb
> > rename to recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
> > index 9e958c0..f19b4c3 100644
> > --- a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb
> > +++ b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb
> > @@ -1,7 +1,7 @@
> >  #
> >  # CIP Core, generic profile
> >  #
> > -# Copyright (c) Siemens AG, 2019
> > +# Copyright (c) Siemens AG, 2019 - 2021
> >  #
> >  # Authors:
> >  #  Jan Kiszka <jan.kiszka@siemens.com>
> > @@ -11,4 +11,4 @@
> >
> >  require linux-cip-common.inc
> >
> > -SRC_URI[sha256sum] =
> "f6a9aec6848a5897c90bafda5a9eba010c03d5d0cf99508adfb1cf7a2f4af9e5"
> > +SRC_URI[sha256sum] =
> "c1404d0a0a1ba71656c237d6d606714d34364814dc9a3998add93fe1749cb27d"
> > diff --git a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb b/recipes-
> kernel/linux/linux-cip_4.4.249-cip53.bb
> > similarity index 53%
> > rename from recipes-kernel/linux/linux-cip_4.4.230-cip47.bb
> > rename to recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
> > index af49441..03b1a04 100644
> > --- a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb
> > +++ b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb
> > @@ -1,7 +1,7 @@
> >  #
> >  # CIP Core, generic profile
> >  #
> > -# Copyright (c) Siemens AG, 2019
> > +# Copyright (c) Siemens AG, 2019 - 2021
> >  #
> >  # Authors:
> >  #  Jan Kiszka <jan.kiszka@siemens.com>
> > @@ -11,4 +11,4 @@
> >
> >  require linux-cip-common.inc
> >
> > -SRC_URI[sha256sum] =
> "3ff33e497064ba8e7d9b5e1ee575c6a936154fa8216774782cbc0db2e4b71cdf"
> > +SRC_URI[sha256sum] =
> "f8a6eba35572da13c81fec6c2d451db8f75b0ab4a5b6b80113523fbb035bf384"
> >
> >
> 
> Something is still broken, see
> https://jpn01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab
> .com%2Fcip-project%2Fcip-core%2Fisar-cip-core%2F-
> %2Fjobs%2F970301333&amp;data=04%7C01%7Cchris.paterson2%40renesas.
> com%7C28b00c4b88d546dfe5c208d8bbd8c261%7C53d82571da1947e49cb4625
> a166a4a2a%7C0%7C0%7C637465886945464208%7CUnknown%7CTWFpbGZsb
> 3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0
> %3D%7C1000&amp;sdata=60fmWcwX%2FRGooW3onB1r%2FdJlkuwQXiAo9o
> xY5Idr1vg%3D&amp;reserved=0
> and
> https://jpn01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab
> .com%2Fcip-project%2Fcip-core%2Fisar-cip-core%2F-
> %2Fjobs%2F970301342&amp;data=04%7C01%7Cchris.paterson2%40renesas.
> com%7C28b00c4b88d546dfe5c208d8bbd8c261%7C53d82571da1947e49cb4625
> a166a4a2a%7C0%7C0%7C637465886945464208%7CUnknown%7CTWFpbGZsb
> 3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0
> %3D%7C1000&amp;sdata=GAcUIsBs9yp9%2B3mtcmoRTXmRDM8VwW3bE%
> 2F1hEWMpl%2Bg%3D&amp;reserved=0.
> 
> Pulling this patch out of next for now.
> 
> Jan
> 
> --
> Siemens AG, T RDA IOT
> Corporate Competence Center Embedded Linux

[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#6109): https://lists.cip-project.org/g/cip-dev/message/6109
Mute This Topic: https://lists.cip-project.org/mt/79924717/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


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

end of thread, other threads:[~2021-01-18 22:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-18 15:06 [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Quirin Gylstorff
2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 1/4] swupdate: enable cross-compile by setting PKG_CONFIG_PATH Quirin Gylstorff
2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 2/4] swupdate: use libubootenv Quirin Gylstorff
2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 3/4] update linux kernels Quirin Gylstorff
2021-01-18 17:44   ` Jan Kiszka
2021-01-18 22:10     ` Chris Paterson
2021-01-18 15:06 ` [cip-dev][isar-cip-core][PATCH v2 4/4] kas: update ISAR Quirin Gylstorff
2021-01-18 17:17 ` [cip-dev][isar-cip-core][PATCH v2 0/4] Updates & Fixes Jan Kiszka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).