diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 98562f1e..3a2a14f9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-03-14T09:48:15Z by kres latest. +# Generated on 2024-07-04T10:28:33Z by kres 8c8b007. name: default concurrency: @@ -31,7 +31,7 @@ jobs: if: (!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/')) services: buildkitd: - image: moby/buildkit:v0.12.5 + image: moby/buildkit:v0.14.1 options: --privileged ports: - 1234:1234 @@ -39,12 +39,38 @@ jobs: - /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit - /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml steps: + - name: gather-system-info + id: system-info + uses: kenchan0130/actions-system-info@v1.3.0 + continue-on-error: true + - name: print-system-info + run: | + MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024)) + + OUTPUTS=( + "CPU Core: ${{ steps.system-info.outputs.cpu-core }}" + "CPU Model: ${{ steps.system-info.outputs.cpu-model }}" + "Hostname: ${{ steps.system-info.outputs.hostname }}" + "NodeName: ${NODE_NAME}" + "Kernel release: ${{ steps.system-info.outputs.kernel-release }}" + "Kernel version: ${{ steps.system-info.outputs.kernel-version }}" + "Name: ${{ steps.system-info.outputs.name }}" + "Platform: ${{ steps.system-info.outputs.platform }}" + "Release: ${{ steps.system-info.outputs.release }}" + "Total memory: ${MEMORY_GB} GB" + ) + + for OUTPUT in "${OUTPUTS[@]}";do + echo "${OUTPUT}" + done + continue-on-error: true - name: checkout uses: actions/checkout@v4 - name: Unshallow run: | git fetch --prune --unshallow - name: Set up Docker Buildx + id: setup-buildx uses: docker/setup-buildx-action@v3 with: append: | @@ -53,6 +79,7 @@ jobs: driver: remote endpoint: tcp://127.0.0.1:1234 - name: Build + if: github.event_name == 'pull_request' run: | make - name: Login to registry diff --git a/.kres.yaml b/.kres.yaml index 814c5ffc..3a54fca9 100644 --- a/.kres.yaml +++ b/.kres.yaml @@ -11,7 +11,7 @@ spec: - name: PKGS_PREFIX defaultValue: ghcr.io/siderolabs - name: PKGS - defaultValue: v1.7.0-alpha.0-33-g3aacf03 + defaultValue: v1.8.0-alpha.0-34-gce49757 --- kind: common.Build spec: diff --git a/Makefile b/Makefile index db51294f..a74cff32 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-03-17T12:10:50Z by kres latest. +# Generated on 2024-07-04T17:14:52Z by kres 8c8b007. # common variables @@ -9,12 +9,9 @@ TAG := $(shell git describe --tag --always --dirty --match v[0-9]\*) ABBREV_TAG := $(shell git describe --tags >/dev/null 2>/dev/null && git describe --tag --always --match v[0-9]\* --abbrev=0 || echo 'undefined') BRANCH := $(shell git rev-parse --abbrev-ref HEAD) ARTIFACTS := _out +IMAGE_TAG ?= $(TAG) OPERATING_SYSTEM := $(shell uname -s | tr '[:upper:]' '[:lower:]') -GOARCH := $(shell uname -m | tr '[:upper:]' '[:lower:]') - -ifeq ($(GOARCH),x86_64) - GOARCH := amd64 -endif +GOARCH := $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/') REGISTRY ?= ghcr.io USERNAME ?= siderolabs REGISTRY_AND_USERNAME ?= $(REGISTRY)/$(USERNAME) @@ -28,7 +25,7 @@ SOURCE_DATE_EPOCH := $(shell git log $(INITIAL_COMMIT_SHA) --pretty=%ct) # sync bldr image with pkgfile -BLDR_RELEASE := v0.3.0 +BLDR_RELEASE := v0.3.1 BLDR_IMAGE := ghcr.io/siderolabs/bldr:$(BLDR_RELEASE) BLDR := docker run --rm --user $(shell id -u):$(shell id -g) --volume $(PWD):/src --entrypoint=/bldr $(BLDR_IMAGE) --root=/src @@ -50,7 +47,7 @@ COMMON_ARGS += --build-arg=PKGS="$(PKGS)" # extra variables PKGS_PREFIX ?= ghcr.io/siderolabs -PKGS ?= v1.7.0-alpha.0-33-g3aacf03 +PKGS ?= v1.8.0-alpha.0-34-gce49757 # targets defines all the available targets @@ -100,7 +97,7 @@ If you already have a compatible builder instance, you may use that instead. ## Artifacts All artifacts will be output to ./$(ARTIFACTS). Images will be tagged with the -registry "$(REGISTRY)", username "$(USERNAME)", and a dynamic tag (e.g. $(IMAGE):$(TAG)). +registry "$(REGISTRY)", username "$(USERNAME)", and a dynamic tag (e.g. $(IMAGE):$(IMAGE_TAG)). The registry and username can be overridden by exporting REGISTRY, and USERNAME respectively. @@ -108,13 +105,13 @@ endef all: $(TARGETS) ## Builds all targets defined. +$(ARTIFACTS): ## Creates artifacts directory. + @mkdir -p $(ARTIFACTS) + .PHONY: clean clean: ## Cleans up all artifacts. @rm -rf $(ARTIFACTS) -$(ARTIFACTS): ## Creates artifacts directory. - @mkdir -p $(ARTIFACTS) - target-%: ## Builds the specified target defined in the Pkgfile. The build result will only remain in the build cache. @$(BUILD) --target=$* $(COMMON_ARGS) $(TARGET_ARGS) $(CI_ARGS) . @@ -151,8 +148,7 @@ help: ## This help menu. @grep -E '^[a-zA-Z%_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' .PHONY: release-notes -release-notes: - mkdir -p $(ARTIFACTS) +release-notes: $(ARTIFACTS) @ARTIFACTS=$(ARTIFACTS) ./hack/release.sh $@ $(ARTIFACTS)/RELEASE_NOTES.md $(TAG) .PHONY: conformance diff --git a/Pkgfile b/Pkgfile index 8223d3d8..25fca2d2 100644 --- a/Pkgfile +++ b/Pkgfile @@ -1,17 +1,17 @@ -# syntax = ghcr.io/siderolabs/bldr:v0.3.0 +# syntax = ghcr.io/siderolabs/bldr:v0.3.1 format: v1alpha2 vars: # renovate: datasource=github-tags extractVersion=^v(?.*)$ depName=ARM-software/arm-trusted-firmware - arm_trusted_firmware_version: 2.8.0 - arm_trusted_firmware_sha256: 60fad60eeb6840097f8e64f16093c06ddb2ef269c7a22affed02beaa6cefe466 - arm_trusted_firmware_sha512: 958cf8f9e258638e59d0fbd8b053fce7d8a9ea2fc922686c9d20ea16f79f55219ac18a12ab240c528ee98e49c2e0eef4c963fdb255cc14b92437a5b3cffc8640 + arm_trusted_firmware_version: 2.10.4 + arm_trusted_firmware_sha256: ba215404fe9db26e5f2cef3fdce17b7c8ed344a2a1d592dd01a5f1c5e72cfdbd + arm_trusted_firmware_sha512: 0b0e634ba7b1bf3d2a0ef429391f9a6c350abe373b0563e3932f0347246b773238593036674cbb958fffce36c7449f9ebb3ee340650a3184c3e052487fae656b # renovate: datasource=github-tags extractVersion=^v(?.*)$ depName=u-boot/u-boot - uboot_version: 2024.07-rc4 - uboot_sha256: 8d36b3fd0b47fe93fc03abb25aac2c26b7c2a1bf2b1c746788c0fc4af68786c5 - uboot_sha512: 2fa73c48ab4f6e60cee11ebac79a35e1b15d95eba5d8bb3612bd354e6b6153bfc17fcf1783b6b410a8b78505535152eab9f2cfbb35a6f19af7f7af7b2741e2a6 + uboot_version: 2024.07 + uboot_sha256: f591da9ab90ef3d6b3d173766d0ddff90c4ed7330680897486117df390d83c8f + uboot_sha512: 678f44e2b9132140f0bf05c637e57e638c73c278611037a41824b3ebff2131af4dec0163da4664bb2e5c4fd8034ba8c95b93b57f7aa9f4c045da322d87c3b5e9 rkbin_commit: a2a0b89b6c8c612dca5ed9ed8a68db8a07f68bc0 rkbin_sha256: 9df375316869daadbf874410f4097591c32cc2dca5a30fd328ea7a1cd8f8b6a8 diff --git a/artifacts/arm-trusted-firmware/rk3328/pkg.yaml b/artifacts/arm-trusted-firmware/rk3328/pkg.yaml index 5badfaac..5a6ffa05 100644 --- a/artifacts/arm-trusted-firmware/rk3328/pkg.yaml +++ b/artifacts/arm-trusted-firmware/rk3328/pkg.yaml @@ -5,7 +5,7 @@ dependencies: - stage: base steps: - sources: - - url: https://github.com/ARM-software/arm-trusted-firmware/archive/v{{ .arm_trusted_firmware_version }}.tar.gz + - url: https://github.com/ARM-software/arm-trusted-firmware/archive/lts-v{{ .arm_trusted_firmware_version }}.tar.gz destination: arm-trusted-firmware.tar.gz sha256: "{{ .arm_trusted_firmware_sha256 }}" sha512: "{{ .arm_trusted_firmware_sha512 }}" diff --git a/artifacts/arm-trusted-firmware/rk3399/pkg.yaml b/artifacts/arm-trusted-firmware/rk3399/pkg.yaml index a27bd12e..587d1c11 100644 --- a/artifacts/arm-trusted-firmware/rk3399/pkg.yaml +++ b/artifacts/arm-trusted-firmware/rk3399/pkg.yaml @@ -5,7 +5,7 @@ dependencies: - stage: base steps: - sources: - - url: https://github.com/ARM-software/arm-trusted-firmware/archive/v{{ .arm_trusted_firmware_version }}.tar.gz + - url: https://github.com/ARM-software/arm-trusted-firmware/archive/lts-v{{ .arm_trusted_firmware_version }}.tar.gz destination: arm-trusted-firmware.tar.gz sha256: "{{ .arm_trusted_firmware_sha256 }}" sha512: "{{ .arm_trusted_firmware_sha512 }}" diff --git a/artifacts/nanopi-r4s/u-boot/patches/uboot-byteorder.patch b/artifacts/nanopi-r4s/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/nanopi-r4s/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/nanopi-r4s/u-boot/pkg.yaml b/artifacts/nanopi-r4s/u-boot/pkg.yaml index 47c75e14..2f2f908b 100644 --- a/artifacts/nanopi-r4s/u-boot/pkg.yaml +++ b/artifacts/nanopi-r4s/u-boot/pkg.yaml @@ -22,9 +22,11 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools + pip3 install pyelftools setuptools tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make nanopi-r4s-rk3399_defconfig build: diff --git a/artifacts/orangepi-r1-plus-lts/u-boot/patches/uboot-byteorder.patch b/artifacts/orangepi-r1-plus-lts/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/orangepi-r1-plus-lts/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/orangepi-r1-plus-lts/u-boot/pkg.yaml b/artifacts/orangepi-r1-plus-lts/u-boot/pkg.yaml index ce5c4514..72cf180d 100644 --- a/artifacts/orangepi-r1-plus-lts/u-boot/pkg.yaml +++ b/artifacts/orangepi-r1-plus-lts/u-boot/pkg.yaml @@ -22,9 +22,11 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools + pip3 install pyelftools setuptools tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make orangepi-r1-plus-lts-rk3328_defconfig build: diff --git a/artifacts/rock4cplus/u-boot/patches/uboot-byteorder.patch b/artifacts/rock4cplus/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/rock4cplus/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/rock4cplus/u-boot/pkg.yaml b/artifacts/rock4cplus/u-boot/pkg.yaml index f08c212a..f13dc731 100644 --- a/artifacts/rock4cplus/u-boot/pkg.yaml +++ b/artifacts/rock4cplus/u-boot/pkg.yaml @@ -22,9 +22,11 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools + pip3 install pyelftools setuptools tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make rock-4c-plus-rk3399_defconfig build: diff --git a/artifacts/rock4se/u-boot/patches/uboot-byteorder.patch b/artifacts/rock4se/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/rock4se/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/rock4se/u-boot/pkg.yaml b/artifacts/rock4se/u-boot/pkg.yaml index 736fb0bf..dff24236 100644 --- a/artifacts/rock4se/u-boot/pkg.yaml +++ b/artifacts/rock4se/u-boot/pkg.yaml @@ -23,12 +23,12 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools \ + pip3 install pyelftools setuptools \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools - tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make rock-4se-rk3399_defconfig patch -p1 < /pkg/patches/enable-rockchip-tpl.patch diff --git a/artifacts/rock64/u-boot/patches/uboot-byteorder.patch b/artifacts/rock64/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/rock64/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/rock64/u-boot/pkg.yaml b/artifacts/rock64/u-boot/pkg.yaml index 34918e8f..cefbed60 100644 --- a/artifacts/rock64/u-boot/pkg.yaml +++ b/artifacts/rock64/u-boot/pkg.yaml @@ -22,9 +22,11 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools + pip3 install pyelftools setuptools tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make rock64-rk3328_defconfig build: diff --git a/artifacts/rockpi4/u-boot/patches/uboot-byteorder.patch b/artifacts/rockpi4/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/rockpi4/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/rockpi4/u-boot/pkg.yaml b/artifacts/rockpi4/u-boot/pkg.yaml index 35f8283e..7fce5f37 100644 --- a/artifacts/rockpi4/u-boot/pkg.yaml +++ b/artifacts/rockpi4/u-boot/pkg.yaml @@ -22,12 +22,12 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools \ + pip3 install pyelftools setuptools \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools - tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make rock-pi-4-rk3399_defconfig build: diff --git a/artifacts/rockpi4c/u-boot/patches/uboot-byteorder.patch b/artifacts/rockpi4c/u-boot/patches/uboot-byteorder.patch new file mode 100644 index 00000000..d93158d6 --- /dev/null +++ b/artifacts/rockpi4c/u-boot/patches/uboot-byteorder.patch @@ -0,0 +1,15 @@ +diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h +index a4cb3bfde5..0ecd088f4a 100644 +--- a/include/linux/byteorder/little_endian.h ++++ b/include/linux/byteorder/little_endian.h +@@ -7,7 +7,10 @@ + #ifndef __LITTLE_ENDIAN_BITFIELD + #define __LITTLE_ENDIAN_BITFIELD + #endif ++ ++#ifndef __BYTE_ORDER + #define __BYTE_ORDER __LITTLE_ENDIAN ++#endif + + #include + #include diff --git a/artifacts/rockpi4c/u-boot/pkg.yaml b/artifacts/rockpi4c/u-boot/pkg.yaml index c4e0a26a..5ba4b277 100644 --- a/artifacts/rockpi4c/u-boot/pkg.yaml +++ b/artifacts/rockpi4c/u-boot/pkg.yaml @@ -22,9 +22,11 @@ steps: && ln -sf /toolchain/bin/env /usr/bin/env \ && ln -sf /toolchain/bin/python3 /toolchain/bin/python - pip3 install pyelftools + pip3 install pyelftools setuptools tar xf u-boot.tar.bz2 --strip-components=1 + + patch -p1 < /pkg/patches/uboot-byteorder.patch - | make rock-pi-4c-rk3399_defconfig build: diff --git a/go.work b/go.work index e118cf2b..33da05f6 100644 --- a/go.work +++ b/go.work @@ -1,4 +1,4 @@ -go 1.22.1 +go 1.22.4 use ( ./installers/nanopi-r4s/src diff --git a/installers/rock4cplus/src/go.mod b/installers/rock4cplus/src/go.mod index 3b15e191..2e6f61a1 100644 --- a/installers/rock4cplus/src/go.mod +++ b/installers/rock4cplus/src/go.mod @@ -1,11 +1,11 @@ module rock4cplus -go 1.22.1 +go 1.22.4 require ( github.com/siderolabs/go-copy v0.1.0 - github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 - golang.org/x/sys v0.16.0 + github.com/siderolabs/talos/pkg/machinery v1.7.5 + golang.org/x/sys v0.21.0 ) require gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/installers/rock4cplus/src/go.sum b/installers/rock4cplus/src/go.sum index 6a910867..bb1bdcbe 100644 --- a/installers/rock4cplus/src/go.sum +++ b/installers/rock4cplus/src/go.sum @@ -1,9 +1,9 @@ github.com/siderolabs/go-copy v0.1.0 h1:OIWCtSg+rhOtnIZTpT31Gfpn17rv5kwJqQHG+QUEgC8= github.com/siderolabs/go-copy v0.1.0/go.mod h1:4bF2rZOZAR/ags/U4AVSpjFE5RPGdEeSkOq6yR9YOkU= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 h1:0pURmnbzsu19reku8OjN1DkeAxgkmuxmKgDgbFT3228= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1/go.mod h1:H2+5QeGXYi2Q7RhBNUAD6dhc9LmdJ2AUXtiAWRXtWBc= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +github.com/siderolabs/talos/pkg/machinery v1.7.5 h1:M02UZSDfN0BB4bXhTYDjEmVvAIX1GsAS45cyKh6+HHU= +github.com/siderolabs/talos/pkg/machinery v1.7.5/go.mod h1:OeamhNo92c3V96bddZNhcCgoRyzw2KWBtpma1lfchtg= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/installers/rock4se/src/go.mod b/installers/rock4se/src/go.mod index f4d4a74f..54cdb807 100644 --- a/installers/rock4se/src/go.mod +++ b/installers/rock4se/src/go.mod @@ -1,11 +1,11 @@ module rock4se -go 1.22.1 +go 1.22.4 require ( github.com/siderolabs/go-copy v0.1.0 - github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 - golang.org/x/sys v0.16.0 + github.com/siderolabs/talos/pkg/machinery v1.7.5 + golang.org/x/sys v0.21.0 ) require gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/installers/rock4se/src/go.sum b/installers/rock4se/src/go.sum index 6a910867..bb1bdcbe 100644 --- a/installers/rock4se/src/go.sum +++ b/installers/rock4se/src/go.sum @@ -1,9 +1,9 @@ github.com/siderolabs/go-copy v0.1.0 h1:OIWCtSg+rhOtnIZTpT31Gfpn17rv5kwJqQHG+QUEgC8= github.com/siderolabs/go-copy v0.1.0/go.mod h1:4bF2rZOZAR/ags/U4AVSpjFE5RPGdEeSkOq6yR9YOkU= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 h1:0pURmnbzsu19reku8OjN1DkeAxgkmuxmKgDgbFT3228= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1/go.mod h1:H2+5QeGXYi2Q7RhBNUAD6dhc9LmdJ2AUXtiAWRXtWBc= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +github.com/siderolabs/talos/pkg/machinery v1.7.5 h1:M02UZSDfN0BB4bXhTYDjEmVvAIX1GsAS45cyKh6+HHU= +github.com/siderolabs/talos/pkg/machinery v1.7.5/go.mod h1:OeamhNo92c3V96bddZNhcCgoRyzw2KWBtpma1lfchtg= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/installers/rock64/src/go.mod b/installers/rock64/src/go.mod index bceb67b1..3f0bf0be 100644 --- a/installers/rock64/src/go.mod +++ b/installers/rock64/src/go.mod @@ -1,11 +1,11 @@ module rock64 -go 1.22.1 +go 1.22.4 require ( github.com/siderolabs/go-copy v0.1.0 - github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 - golang.org/x/sys v0.16.0 + github.com/siderolabs/talos/pkg/machinery v1.7.5 + golang.org/x/sys v0.21.0 ) require gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/installers/rock64/src/go.sum b/installers/rock64/src/go.sum index 6a910867..bb1bdcbe 100644 --- a/installers/rock64/src/go.sum +++ b/installers/rock64/src/go.sum @@ -1,9 +1,9 @@ github.com/siderolabs/go-copy v0.1.0 h1:OIWCtSg+rhOtnIZTpT31Gfpn17rv5kwJqQHG+QUEgC8= github.com/siderolabs/go-copy v0.1.0/go.mod h1:4bF2rZOZAR/ags/U4AVSpjFE5RPGdEeSkOq6yR9YOkU= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 h1:0pURmnbzsu19reku8OjN1DkeAxgkmuxmKgDgbFT3228= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1/go.mod h1:H2+5QeGXYi2Q7RhBNUAD6dhc9LmdJ2AUXtiAWRXtWBc= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +github.com/siderolabs/talos/pkg/machinery v1.7.5 h1:M02UZSDfN0BB4bXhTYDjEmVvAIX1GsAS45cyKh6+HHU= +github.com/siderolabs/talos/pkg/machinery v1.7.5/go.mod h1:OeamhNo92c3V96bddZNhcCgoRyzw2KWBtpma1lfchtg= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/installers/rockpi4/src/go.mod b/installers/rockpi4/src/go.mod index 5b779430..74a4f641 100644 --- a/installers/rockpi4/src/go.mod +++ b/installers/rockpi4/src/go.mod @@ -1,11 +1,11 @@ module rockpi4 -go 1.22.1 +go 1.22.4 require ( github.com/siderolabs/go-copy v0.1.0 - github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 - golang.org/x/sys v0.16.0 + github.com/siderolabs/talos/pkg/machinery v1.7.5 + golang.org/x/sys v0.21.0 ) require gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/installers/rockpi4/src/go.sum b/installers/rockpi4/src/go.sum index 6a910867..bb1bdcbe 100644 --- a/installers/rockpi4/src/go.sum +++ b/installers/rockpi4/src/go.sum @@ -1,9 +1,9 @@ github.com/siderolabs/go-copy v0.1.0 h1:OIWCtSg+rhOtnIZTpT31Gfpn17rv5kwJqQHG+QUEgC8= github.com/siderolabs/go-copy v0.1.0/go.mod h1:4bF2rZOZAR/ags/U4AVSpjFE5RPGdEeSkOq6yR9YOkU= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 h1:0pURmnbzsu19reku8OjN1DkeAxgkmuxmKgDgbFT3228= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1/go.mod h1:H2+5QeGXYi2Q7RhBNUAD6dhc9LmdJ2AUXtiAWRXtWBc= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +github.com/siderolabs/talos/pkg/machinery v1.7.5 h1:M02UZSDfN0BB4bXhTYDjEmVvAIX1GsAS45cyKh6+HHU= +github.com/siderolabs/talos/pkg/machinery v1.7.5/go.mod h1:OeamhNo92c3V96bddZNhcCgoRyzw2KWBtpma1lfchtg= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/installers/rockpi4c/src/go.mod b/installers/rockpi4c/src/go.mod index 53a6eaaa..6b027b97 100644 --- a/installers/rockpi4c/src/go.mod +++ b/installers/rockpi4c/src/go.mod @@ -1,11 +1,11 @@ module rockpi4c -go 1.22.1 +go 1.22.4 require ( github.com/siderolabs/go-copy v0.1.0 - github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 - golang.org/x/sys v0.16.0 + github.com/siderolabs/talos/pkg/machinery v1.7.5 + golang.org/x/sys v0.21.0 ) require gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/installers/rockpi4c/src/go.sum b/installers/rockpi4c/src/go.sum index 6a910867..bb1bdcbe 100644 --- a/installers/rockpi4c/src/go.sum +++ b/installers/rockpi4c/src/go.sum @@ -1,9 +1,9 @@ github.com/siderolabs/go-copy v0.1.0 h1:OIWCtSg+rhOtnIZTpT31Gfpn17rv5kwJqQHG+QUEgC8= github.com/siderolabs/go-copy v0.1.0/go.mod h1:4bF2rZOZAR/ags/U4AVSpjFE5RPGdEeSkOq6yR9YOkU= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1 h1:0pURmnbzsu19reku8OjN1DkeAxgkmuxmKgDgbFT3228= -github.com/siderolabs/talos/pkg/machinery v1.7.0-alpha.1/go.mod h1:H2+5QeGXYi2Q7RhBNUAD6dhc9LmdJ2AUXtiAWRXtWBc= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +github.com/siderolabs/talos/pkg/machinery v1.7.5 h1:M02UZSDfN0BB4bXhTYDjEmVvAIX1GsAS45cyKh6+HHU= +github.com/siderolabs/talos/pkg/machinery v1.7.5/go.mod h1:OeamhNo92c3V96bddZNhcCgoRyzw2KWBtpma1lfchtg= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=