Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.

Commit 5e5bac4

Browse files
Merge pull request #191 from jacobweinstock/lacp
Enabled LACP in iPXE: ## Description <!--- Please describe what this PR is going to change --> Helpful for environments with LACP enabled. ## Why is this needed <!--- Link to issue you have raised --> Fixes: # ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## How are existing users impacted? What migration steps/scripts do we need? <!--- Fixes a bug, unblocks installation, removes a component of the stack etc --> <!--- Requires a DB migration script, etc. --> ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
2 parents 3b26a55 + 7b52ee4 commit 5e5bac4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: generate coverage report
2525
run: make cover
2626
- name: Codecov
27-
uses: codecov/codecov-action@v5.1.1
27+
uses: codecov/codecov-action@v5.3.1
2828
- name: Build
2929
run: make build

binary/script/ipxe-customizations/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#define VLAN_CMD /* VLAN commands */
1515
#define DOWNLOAD_PROTO_NFS /* NFS */
1616
#define ROUTE_CMD /* Routing table management commands */
17+
#define NET_PROTO_LACP /* Link Aggregation control protocol */
1718

1819
#undef CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */
1920
#undef CRYPTO_80211_WPA2 /* Add support for stronger WPA cryptography */
@@ -23,7 +24,6 @@
2324
#undef IMAGE_PNG /* PNG image support */
2425
#undef IMAGE_PNM /* PNM image support */
2526
#undef IWMGMT_CMD /* Wireless interface management commands */
26-
#undef NET_PROTO_LACP /* Link Aggregation control protocol */
2727
#undef NET_PROTO_STP /* Spanning Tree protocol */
2828
#undef VNIC_IPOIB /* Infiniband IPoIB virtual NICs */
2929

0 commit comments

Comments
 (0)