generated from siderolabs/sbc-template
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Go deps, PKGS, ARM trusted firmware, u-boot. Signed-off-by: Andrey Smirnov <[email protected]>
- Loading branch information
Showing
31 changed files
with
211 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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,20 +31,46 @@ 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 | ||
volumes: | ||
- /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/[email protected] | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
artifacts/orangepi-r1-plus-lts/u-boot/patches/uboot-byteorder.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <linux/compiler.h> | ||
#include <linux/types.h> |
Oops, something went wrong.