-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mlnx-fw-upgrade]: Define required FW version in build time. (#902)
- Do not query required FW from file.
- Loading branch information
1 parent
ed66588
commit 7c75030
Showing
4 changed files
with
12 additions
and
9 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
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,7 +1,9 @@ | ||
# mellanox firmware | ||
|
||
MLNX_FW = fw-SPC-rel-13_1224_0140-EVB.mfa | ||
$(MLNX_FW)_URL = $(MLNX_SDK_BASE_URL)/$(MLNX_FW) | ||
SONIC_ONLINE_FILES += $(MLNX_FW) | ||
MLNX_FW_VERSION = 13.1224.0140 | ||
MLNX_FW_FILE = fw-SPC-rel-$(subst .,_,$(MLNX_FW_VERSION))-EVB.mfa | ||
$(MLNX_FW_FILE)_URL = $(MLNX_SDK_BASE_URL)/$(MLNX_FW_FILE) | ||
SONIC_ONLINE_FILES += $(MLNX_FW_FILE) | ||
|
||
export MLNX_FW | ||
export MLNX_FW_VERSION | ||
export MLNX_FW_FILE |
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