Skip to content

Commit 086ac16

Browse files
author
Marky Jackson
authored
Merge pull request #61 from micahhausler/kernel-opts
Enable Intel networking driver to support Intel NUCs
2 parents 60d23af + 3ab29f3 commit 086ac16

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/kernel-ci.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v2.3.4
1818

19+
- name: Use docker buildx
20+
run: docker buildx create --use
21+
1922
- run: echo "REGISTRY=$(ip addr show dev bond0 | awk '$1 == "inet" { sub("/.*", "", $2); print $2 }' | head -n 1)" >> $GITHUB_ENV
2023

21-
- run: make -C kernel build ORG=${REGISTRY}:5000
24+
- run: make -C kernel devbuild ORG=${REGISTRY}:5000
2225

2326
# TODO: add artifacts for the built images
2427
#- uses: actions/upload-artifact@v2

kernel/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,4 +296,8 @@ else
296296
-o type=local,dest=out/kconfig \
297297
--build-arg KERNEL_VERSIONS="$(KERNEL_VERSIONS)" \
298298
-t $(ORG)/kconfig:${KCONFIG_TAG} .
299-
endif
299+
endif
300+
301+
.PHONY: clean
302+
clean:
303+
rm out/

kernel/config-5.10.x-x86_64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2174,7 +2174,7 @@ CONFIG_IAVF=m
21742174
CONFIG_I40EVF=m
21752175
CONFIG_ICE=m
21762176
# CONFIG_FM10K is not set
2177-
# CONFIG_IGC is not set
2177+
CONFIG_IGC=m
21782178
# CONFIG_JME is not set
21792179
# CONFIG_NET_VENDOR_MARVELL is not set
21802180
CONFIG_NET_VENDOR_MELLANOX=y

0 commit comments

Comments
 (0)