Skip to content

Commit

Permalink
Merge pull request #61 from micahhausler/kernel-opts
Browse files Browse the repository at this point in the history
Enable Intel networking driver to support Intel NUCs
  • Loading branch information
Marky Jackson authored Jun 22, 2021
2 parents 60d23af + 3ab29f3 commit 086ac16
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/kernel-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ jobs:
- name: Checkout code
uses: actions/[email protected]

- name: Use docker buildx
run: docker buildx create --use

- run: echo "REGISTRY=$(ip addr show dev bond0 | awk '$1 == "inet" { sub("/.*", "", $2); print $2 }' | head -n 1)" >> $GITHUB_ENV

- run: make -C kernel build ORG=${REGISTRY}:5000
- run: make -C kernel devbuild ORG=${REGISTRY}:5000

# TODO: add artifacts for the built images
#- uses: actions/upload-artifact@v2
Expand Down
6 changes: 5 additions & 1 deletion kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -296,4 +296,8 @@ else
-o type=local,dest=out/kconfig \
--build-arg KERNEL_VERSIONS="$(KERNEL_VERSIONS)" \
-t $(ORG)/kconfig:${KCONFIG_TAG} .
endif
endif

.PHONY: clean
clean:
rm out/
2 changes: 1 addition & 1 deletion kernel/config-5.10.x-x86_64
Original file line number Diff line number Diff line change
Expand Up @@ -2174,7 +2174,7 @@ CONFIG_IAVF=m
CONFIG_I40EVF=m
CONFIG_ICE=m
# CONFIG_FM10K is not set
# CONFIG_IGC is not set
CONFIG_IGC=m
# CONFIG_JME is not set
# CONFIG_NET_VENDOR_MARVELL is not set
CONFIG_NET_VENDOR_MELLANOX=y
Expand Down

0 comments on commit 086ac16

Please sign in to comment.