[gentoo-catalyst] [PATCH] catalyst: generate .sha256 file if any digest is enabled

2021-11-04 Thread Georgy Yakovlev
://bugs.gentoo.org/821568 [0] https://github.com/systemd/systemd/blob/aedec452b9e5dd197881f2164fb205dfe8bfdcec/src/import/pull-common.c#L236 [1] https://mirrors.edge.kernel.org/opensuse/distribution/leap/15.0/iso/openSUSE-Leap-15.0-DVD-x86_64.iso.sha256 Signed-off-by: Georgy Yakovlev --- catalyst/base

[gentoo-catalyst] [PATCH] targets/support/bootloader-setup.sh: add arm64 support

2021-07-25 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- targets/support/bootloader-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh index ea18f736..4cfa61eb 100755 --- a/targets/support/bootloader-setup.sh +++ b

[gentoo-catalyst] [PATCH 2/2] targets/support/create-iso.sh: use app-cdr/cdrtools instead of virtual

2021-07-25 Thread Georgy Yakovlev
virtual no longer exist Signed-off-by: Georgy Yakovlev --- targets/support/create-iso.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 729f5c15..5269b77e 100755 --- a/targets/support/create-iso.sh

[gentoo-catalyst] [PATCH 1/2] targets/support/create-iso.sh: add arm64 support

2021-07-25 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- targets/support/create-iso.sh | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 70684f78..729f5c15 100755 --- a/targets/support/create-iso.sh +++ b/targets/support

[gentoo-catalyst] [PATCH] targets/support/create-iso.sh: use mkrescue on arm64

2021-07-24 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- targets/support/create-iso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 70684f78..88d9870f 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create

[gentoo-catalyst] [PATCH 3/3] arch/ppc.toml: add power9 subarches

2020-10-20 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- arch/ppc.toml | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/ppc.toml b/arch/ppc.toml index 6f74789d..c8623cca 100644 --- a/arch/ppc.toml +++ b/arch/ppc.toml @@ -42,6 +42,16 @@ COMMON_FLAGS = "-O2 -pipe -mcpu=power8 -mtune=power8&qu

[gentoo-catalyst] [PATCH 2/3] arch/ppc.toml: don't force -mabi=elfv2 on power subarches.

2020-10-20 Thread Georgy Yakovlev
. to my knowledge those subarch definitions are not used by releng yet, so we will not break anything. Signed-off-by: Georgy Yakovlev --- arch/ppc.toml | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/ppc.toml b/arch/ppc.toml index 870c7647..6f74789d 100644 --- a/arch

[gentoo-catalyst] [PATCH 1/3] arch/ppc.toml: add CHOST based subarches

2020-10-20 Thread Georgy Yakovlev
if stage spec sets chost value, code in catalyst/base/stagebase.py#L76 will derive subarch value from the frontmost part of CHOST triple. if such subarch is not defined in toml file, build will fail. Add generic copy of base subarches defined in CHOST format. Signed-off-by: Georgy Yakovlev