public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] meta, meta-isar: drop redundant DPKG_ARCH statements for dpkg-raw recipes
@ 2026-01-06  7:23 srinuvasan.a via isar-users
  2026-01-07 12:01 ` 'MOESSBAUER, Felix' via isar-users
  2026-01-08  7:50 ` Anton Mikanovich
  0 siblings, 2 replies; 3+ messages in thread
From: srinuvasan.a via isar-users @ 2026-01-06  7:23 UTC (permalink / raw)
  To: isar-users; +Cc: Srinuvasan A

From: Srinuvasan A <srinuvasan.a@siemens.com>

DPKG_ARCH = "all" is now the default in isar for dpkg-raw recipes.

Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
 .../module-signer-example/module-signer-example.bb              | 2 --
 meta/classes-recipe/dracut-module.bbclass                       | 2 --
 meta/recipes-support/enable-fsck/enable-fsck_0.2.bb             | 2 --
 .../isar-ddi-definitions/isar-ddi-definitions_0.1.bb            | 1 -
 meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb     | 2 --
 5 files changed, 9 deletions(-)

diff --git a/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb b/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb
index 58a84d01..271b481e 100644
--- a/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb
+++ b/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb
@@ -7,8 +7,6 @@
 
 inherit dpkg-raw
 
-DPKG_ARCH = "all"
-
 PROVIDES = "module-signer"
 DEBIAN_PROVIDES = "module-signer"
 
diff --git a/meta/classes-recipe/dracut-module.bbclass b/meta/classes-recipe/dracut-module.bbclass
index e2ed52ac..8bc2846e 100644
--- a/meta/classes-recipe/dracut-module.bbclass
+++ b/meta/classes-recipe/dracut-module.bbclass
@@ -11,8 +11,6 @@ inherit dpkg-raw
 
 FILESPATH:append = ":${LAYERDIR_core}/recipes-initramfs/dracut-module/files"
 
-DPKG_ARCH = "all"
-
 DRACUT_MODULE_SETUP = "module-setup.sh"
 SRC_URI:append = "file://${DRACUT_MODULE_SETUP}.tmpl"
 
diff --git a/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb b/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb
index 2d0ec950..b5c42d8f 100644
--- a/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb
+++ b/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb
@@ -16,8 +16,6 @@ SRC_URI = " \
     file://enable-fsck.sh \
     file://postinst"
 
-DPKG_ARCH = "all"
-
 do_install() {
     install -d -m 755 ${D}/usr/share/enable-fsck
     install -m 755 ${WORKDIR}/enable-fsck.sh ${D}/usr/share/enable-fsck/
diff --git a/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb b/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb
index e7ee516a..7982f238 100644
--- a/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb
+++ b/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb
@@ -6,7 +6,6 @@
 inherit dpkg-raw
 
 DESCRIPTION = "Definitions to generate Discoverable Disk Image"
-DPKG_ARCH = "all"
 
 DEBIAN_DEPENDS = "systemd, systemd-repart, cryptsetup, openssl, erofs-utils"
 
diff --git a/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb b/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb
index 55d67f6e..1184df7c 100644
--- a/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb
+++ b/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb
@@ -5,7 +5,5 @@ DESCRIPTION = "Systemd service to regenerate sshd keys"
 MAINTAINER = "isar-users <isar-users@googlegroups.com>"
 DEBIAN_DEPENDS = "openssh-server, systemd"
 
-DPKG_ARCH = "all"
-
 SRC_URI = "file://postinst \
            file://sshd-regen-keys.service"
-- 
2.34.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 visit https://groups.google.com/d/msgid/isar-users/20260106072316.50946-1-srinuvasan.a%40siemens.com.

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

* Re: [PATCH] meta, meta-isar: drop redundant DPKG_ARCH statements for dpkg-raw recipes
  2026-01-06  7:23 [PATCH] meta, meta-isar: drop redundant DPKG_ARCH statements for dpkg-raw recipes srinuvasan.a via isar-users
@ 2026-01-07 12:01 ` 'MOESSBAUER, Felix' via isar-users
  2026-01-08  7:50 ` Anton Mikanovich
  1 sibling, 0 replies; 3+ messages in thread
From: 'MOESSBAUER, Felix' via isar-users @ 2026-01-07 12:01 UTC (permalink / raw)
  To: isar-users, Arjunan, Srinu

On Tue, 2026-01-06 at 12:53 +0530, srinuvasan.a via isar-users wrote:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
> 
> DPKG_ARCH = "all" is now the default in isar for dpkg-raw recipes.

Reviewed-by: Felix Moessbauer <felix.moessbauer@siemens.com>

Felix

> 
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> ---
>  .../module-signer-example/module-signer-example.bb              | 2 --
>  meta/classes-recipe/dracut-module.bbclass                       | 2 --
>  meta/recipes-support/enable-fsck/enable-fsck_0.2.bb             | 2 --
>  .../isar-ddi-definitions/isar-ddi-definitions_0.1.bb            | 1 -
>  meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb     | 2 --
>  5 files changed, 9 deletions(-)
> 
> diff --git a/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb b/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb
> index 58a84d01..271b481e 100644
> --- a/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb
> +++ b/meta-isar/recipes-devtools/module-signer-example/module-signer-example.bb
> @@ -7,8 +7,6 @@
>  
>  inherit dpkg-raw
>  
> -DPKG_ARCH = "all"
> -
>  PROVIDES = "module-signer"
>  DEBIAN_PROVIDES = "module-signer"
>  
> diff --git a/meta/classes-recipe/dracut-module.bbclass b/meta/classes-recipe/dracut-module.bbclass
> index e2ed52ac..8bc2846e 100644
> --- a/meta/classes-recipe/dracut-module.bbclass
> +++ b/meta/classes-recipe/dracut-module.bbclass
> @@ -11,8 +11,6 @@ inherit dpkg-raw
>  
>  FILESPATH:append = ":${LAYERDIR_core}/recipes-initramfs/dracut-module/files"
>  
> -DPKG_ARCH = "all"
> -
>  DRACUT_MODULE_SETUP = "module-setup.sh"
>  SRC_URI:append = "file://${DRACUT_MODULE_SETUP}.tmpl"
>  
> diff --git a/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb b/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb
> index 2d0ec950..b5c42d8f 100644
> --- a/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb
> +++ b/meta/recipes-support/enable-fsck/enable-fsck_0.2.bb
> @@ -16,8 +16,6 @@ SRC_URI = " \
>      file://enable-fsck.sh \
>      file://postinst"
>  
> -DPKG_ARCH = "all"
> -
>  do_install() {
>      install -d -m 755 ${D}/usr/share/enable-fsck
>      install -m 755 ${WORKDIR}/enable-fsck.sh ${D}/usr/share/enable-fsck/
> diff --git a/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb b/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb
> index e7ee516a..7982f238 100644
> --- a/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb
> +++ b/meta/recipes-support/isar-ddi-definitions/isar-ddi-definitions_0.1.bb
> @@ -6,7 +6,6 @@
>  inherit dpkg-raw
>  
>  DESCRIPTION = "Definitions to generate Discoverable Disk Image"
> -DPKG_ARCH = "all"
>  
>  DEBIAN_DEPENDS = "systemd, systemd-repart, cryptsetup, openssl, erofs-utils"
>  
> diff --git a/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb b/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb
> index 55d67f6e..1184df7c 100644
> --- a/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb
> +++ b/meta/recipes-support/sshd-regen-keys/sshd-regen-keys_0.5.bb
> @@ -5,7 +5,5 @@ DESCRIPTION = "Systemd service to regenerate sshd keys"
>  MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>  DEBIAN_DEPENDS = "openssh-server, systemd"
>  
> -DPKG_ARCH = "all"
> -
>  SRC_URI = "file://postinst \
>             file://sshd-regen-keys.service"
> -- 
> 2.34.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 visit https://groups.google.com/d/msgid/isar-users/20260106072316.50946-1-srinuvasan.a%40siemens.com.

-- 
Siemens AG
Linux Expert Center
Friedrich-Ludwig-Bauer-Str. 3
85748 Garching, Germany

-- 
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 visit https://groups.google.com/d/msgid/isar-users/5bca8c633f8b9f66c2b3fd091836bfa465c5dec5.camel%40siemens.com.

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

* Re: [PATCH] meta, meta-isar: drop redundant DPKG_ARCH statements for dpkg-raw recipes
  2026-01-06  7:23 [PATCH] meta, meta-isar: drop redundant DPKG_ARCH statements for dpkg-raw recipes srinuvasan.a via isar-users
  2026-01-07 12:01 ` 'MOESSBAUER, Felix' via isar-users
@ 2026-01-08  7:50 ` Anton Mikanovich
  1 sibling, 0 replies; 3+ messages in thread
From: Anton Mikanovich @ 2026-01-08  7:50 UTC (permalink / raw)
  To: srinuvasan.a, isar-users

06/01/2026 09:23, srinuvasan.a via isar-users wrote:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
>
> DPKG_ARCH = "all" is now the default in isar for dpkg-raw recipes.
>
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
Applied to next, thanks.

-- 
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 visit https://groups.google.com/d/msgid/isar-users/634e54ca-20be-4190-8665-742dc26ec5f8%40ilbers.de.

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

end of thread, other threads:[~2026-01-08  7:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-06  7:23 [PATCH] meta, meta-isar: drop redundant DPKG_ARCH statements for dpkg-raw recipes srinuvasan.a via isar-users
2026-01-07 12:01 ` 'MOESSBAUER, Felix' via isar-users
2026-01-08  7:50 ` Anton Mikanovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox