-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add broadcom netextreme 2 (bnx2/bnx2x) extension
This PR adds bnx2/bnx2x from linux-firmware. Signed-off-by: Spencer Smith <spencer.smith@talos-systems.com>
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
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
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,10 @@ | ||
version: v1alpha1 | ||
metadata: | ||
name: bnx2-bnx2x | ||
version: 20211216-v1.0.0 | ||
author: Spencer Smith | ||
description: | | ||
This system extension provides bnx2 and bnx2x binaries. | ||
compatibility: | ||
talos: | ||
version: "> v0.15.0-alpha.1" |
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,17 @@ | ||
name: bnx2-bnx2x | ||
variant: scratch | ||
shell: /toolchain/bin/bash | ||
dependencies: | ||
- stage: base | ||
- image: "{{ .LINUX_FIRMWARE_IMAGE }}" | ||
steps: | ||
- install: | ||
- | | ||
mkdir -p /rootfs/lib/firmware | ||
cp -R -p /lib/firmware/bnx2 /rootfs/lib/firmware | ||
cp -R -p /lib/firmware/bnx2x /rootfs/lib/firmware | ||
finalize: | ||
- from: /rootfs | ||
to: /rootfs | ||
- from: /pkg/manifest.yaml | ||
to: / |