* [PATCH 0/2] Fix isar-bootstrap for sifive-fu540
@ 2021-09-17 16:11 Anton Mikanovich
2021-09-17 16:11 ` [PATCH 1/2] meta: Fix debian-sid-ports source list Anton Mikanovich
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Anton Mikanovich @ 2021-09-17 16:11 UTC (permalink / raw)
To: isar-users; +Cc: Anton Mikanovich
Set correct sid-ports apt sources list and signing key to fix building
isar-bootstrap on sifive-fu540-sid-ports target.
Anton Mikanovich (2):
meta: Fix debian-sid-ports source list
meta: Update debian ports signing key
meta/conf/distro/debian-sid-ports.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] meta: Fix debian-sid-ports source list
2021-09-17 16:11 [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
@ 2021-09-17 16:11 ` Anton Mikanovich
2021-09-17 18:23 ` Tim Orling
2021-09-17 16:11 ` [PATCH 2/2] meta: Update debian ports signing key Anton Mikanovich
2021-10-04 14:34 ` [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
2 siblings, 1 reply; 6+ messages in thread
From: Anton Mikanovich @ 2021-09-17 16:11 UTC (permalink / raw)
To: isar-users; +Cc: Anton Mikanovich
Replace weak DISTRO_APT_SOURCES setting by hard value assignment
because it was overwritten by debian-common config.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
meta/conf/distro/debian-sid-ports.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/conf/distro/debian-sid-ports.conf b/meta/conf/distro/debian-sid-ports.conf
index 8a8beb5..aee704b 100644
--- a/meta/conf/distro/debian-sid-ports.conf
+++ b/meta/conf/distro/debian-sid-ports.conf
@@ -12,7 +12,7 @@ HOST_DISTRO ?= "debian-sid"
DEBIAN_PORTS_KEY = "https://www.ports.debian.org/archive_2020.key;sha256sum=d24c6d2fe55e563ff0d998666b5e55dd8058742517a6839d9c23d201b48180c8"
-DISTRO_APT_SOURCES ?= "conf/distro/debian-${BASE_DISTRO_CODENAME}-ports.list"
+DISTRO_APT_SOURCES = "conf/distro/debian-${BASE_DISTRO_CODENAME}-ports.list"
DISTRO_BOOTSTRAP_KEYS += "${DEBIAN_PORTS_KEY}"
DISTRO_CONFIG_SCRIPT ?= "debian-configscript.sh"
DISTRO_KERNELS ?= "riscv64"
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/2] meta: Update debian ports signing key
2021-09-17 16:11 [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
2021-09-17 16:11 ` [PATCH 1/2] meta: Fix debian-sid-ports source list Anton Mikanovich
@ 2021-09-17 16:11 ` Anton Mikanovich
2021-09-17 18:23 ` Tim Orling
2021-10-04 14:34 ` [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
2 siblings, 1 reply; 6+ messages in thread
From: Anton Mikanovich @ 2021-09-17 16:11 UTC (permalink / raw)
To: isar-users; +Cc: Anton Mikanovich
Replace expired Debian Ports Archive Automatic Signing Key (2020)
(ID:84C573CD4E1AFD6C) by new Debian Ports Archive Automatic Signing Key
(2021) (ID: 5A88D659DCB811BB) to make debian-sid-ports targets work.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
meta/conf/distro/debian-sid-ports.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/conf/distro/debian-sid-ports.conf b/meta/conf/distro/debian-sid-ports.conf
index aee704b..32bd32f 100644
--- a/meta/conf/distro/debian-sid-ports.conf
+++ b/meta/conf/distro/debian-sid-ports.conf
@@ -10,7 +10,7 @@ BASE_DISTRO_CODENAME = "sid"
HOST_DISTRO ?= "debian-sid"
-DEBIAN_PORTS_KEY = "https://www.ports.debian.org/archive_2020.key;sha256sum=d24c6d2fe55e563ff0d998666b5e55dd8058742517a6839d9c23d201b48180c8"
+DEBIAN_PORTS_KEY = "https://www.ports.debian.org/archive_2021.key;sha256sum=44a0c59cac5385cd0a1506f695fbd2381fb71a04d8afc05248ad00a0ec6052aa"
DISTRO_APT_SOURCES = "conf/distro/debian-${BASE_DISTRO_CODENAME}-ports.list"
DISTRO_BOOTSTRAP_KEYS += "${DEBIAN_PORTS_KEY}"
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] meta: Fix debian-sid-ports source list
2021-09-17 16:11 ` [PATCH 1/2] meta: Fix debian-sid-ports source list Anton Mikanovich
@ 2021-09-17 18:23 ` Tim Orling
0 siblings, 0 replies; 6+ messages in thread
From: Tim Orling @ 2021-09-17 18:23 UTC (permalink / raw)
To: Anton Mikanovich; +Cc: isar-users
[-- Attachment #1: Type: text/plain, Size: 1513 bytes --]
On Fri, Sep 17, 2021 at 9:11 AM Anton Mikanovich <amikan@ilbers.de> wrote:
> Replace weak DISTRO_APT_SOURCES setting by hard value assignment
> because it was overwritten by debian-common config.
>
> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
>
Tested-by: Tim Orling <ticotimo@gmail.com>
> ---
> meta/conf/distro/debian-sid-ports.conf | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/conf/distro/debian-sid-ports.conf
> b/meta/conf/distro/debian-sid-ports.conf
> index 8a8beb5..aee704b 100644
> --- a/meta/conf/distro/debian-sid-ports.conf
> +++ b/meta/conf/distro/debian-sid-ports.conf
> @@ -12,7 +12,7 @@ HOST_DISTRO ?= "debian-sid"
>
> DEBIAN_PORTS_KEY = "
> https://www.ports.debian.org/archive_2020.key;sha256sum=d24c6d2fe55e563ff0d998666b5e55dd8058742517a6839d9c23d201b48180c8
> "
>
> -DISTRO_APT_SOURCES ?=
> "conf/distro/debian-${BASE_DISTRO_CODENAME}-ports.list"
> +DISTRO_APT_SOURCES =
> "conf/distro/debian-${BASE_DISTRO_CODENAME}-ports.list"
> DISTRO_BOOTSTRAP_KEYS += "${DEBIAN_PORTS_KEY}"
> DISTRO_CONFIG_SCRIPT ?= "debian-configscript.sh"
> DISTRO_KERNELS ?= "riscv64"
> --
> 2.25.1
>
> --
> You received this message because you are subscribed to the Google Groups
> "isar-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to isar-users+unsubscribe@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/isar-users/20210917161102.74143-2-amikan%40ilbers.de
> .
>
[-- Attachment #2: Type: text/html, Size: 2603 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] meta: Update debian ports signing key
2021-09-17 16:11 ` [PATCH 2/2] meta: Update debian ports signing key Anton Mikanovich
@ 2021-09-17 18:23 ` Tim Orling
0 siblings, 0 replies; 6+ messages in thread
From: Tim Orling @ 2021-09-17 18:23 UTC (permalink / raw)
To: Anton Mikanovich; +Cc: isar-users
[-- Attachment #1: Type: text/plain, Size: 1625 bytes --]
On Fri, Sep 17, 2021 at 9:11 AM Anton Mikanovich <amikan@ilbers.de> wrote:
> Replace expired Debian Ports Archive Automatic Signing Key (2020)
> (ID:84C573CD4E1AFD6C) by new Debian Ports Archive Automatic Signing Key
> (2021) (ID: 5A88D659DCB811BB) to make debian-sid-ports targets work.
>
> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
>
Tested-by: Tim Orlling <ticotimo@gmail.com>
> ---
> meta/conf/distro/debian-sid-ports.conf | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/conf/distro/debian-sid-ports.conf
> b/meta/conf/distro/debian-sid-ports.conf
> index aee704b..32bd32f 100644
> --- a/meta/conf/distro/debian-sid-ports.conf
> +++ b/meta/conf/distro/debian-sid-ports.conf
> @@ -10,7 +10,7 @@ BASE_DISTRO_CODENAME = "sid"
>
> HOST_DISTRO ?= "debian-sid"
>
> -DEBIAN_PORTS_KEY = "
> https://www.ports.debian.org/archive_2020.key;sha256sum=d24c6d2fe55e563ff0d998666b5e55dd8058742517a6839d9c23d201b48180c8
> "
> +DEBIAN_PORTS_KEY = "
> https://www.ports.debian.org/archive_2021.key;sha256sum=44a0c59cac5385cd0a1506f695fbd2381fb71a04d8afc05248ad00a0ec6052aa
> "
>
> DISTRO_APT_SOURCES =
> "conf/distro/debian-${BASE_DISTRO_CODENAME}-ports.list"
> DISTRO_BOOTSTRAP_KEYS += "${DEBIAN_PORTS_KEY}"
> --
> 2.25.1
>
> --
> You received this message because you are subscribed to the Google Groups
> "isar-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to isar-users+unsubscribe@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/isar-users/20210917161102.74143-3-amikan%40ilbers.de
> .
>
[-- Attachment #2: Type: text/html, Size: 2872 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] Fix isar-bootstrap for sifive-fu540
2021-09-17 16:11 [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
2021-09-17 16:11 ` [PATCH 1/2] meta: Fix debian-sid-ports source list Anton Mikanovich
2021-09-17 16:11 ` [PATCH 2/2] meta: Update debian ports signing key Anton Mikanovich
@ 2021-10-04 14:34 ` Anton Mikanovich
2 siblings, 0 replies; 6+ messages in thread
From: Anton Mikanovich @ 2021-10-04 14:34 UTC (permalink / raw)
To: isar-users
On 17.09.21 19:11, Anton Mikanovich wrote:
> Set correct sid-ports apt sources list and signing key to fix building
> isar-bootstrap on sifive-fu540-sid-ports target.
>
> Anton Mikanovich (2):
> meta: Fix debian-sid-ports source list
> meta: Update debian ports signing key
>
> meta/conf/distro/debian-sid-ports.conf | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Applied to next.
--
Anton Mikanovich
Promwad Ltd.
External service provider of ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn, Germany
+49 (89) 122 67 24-0
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-10-04 14:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-17 16:11 [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
2021-09-17 16:11 ` [PATCH 1/2] meta: Fix debian-sid-ports source list Anton Mikanovich
2021-09-17 18:23 ` Tim Orling
2021-09-17 16:11 ` [PATCH 2/2] meta: Update debian ports signing key Anton Mikanovich
2021-09-17 18:23 ` Tim Orling
2021-10-04 14:34 ` [PATCH 0/2] Fix isar-bootstrap for sifive-fu540 Anton Mikanovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox