diff options
author | Gary Bisson <gary.bisson@boundarydevices.com> | 2017-08-18 16:15:52 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-19 15:18:32 +0200 |
commit | d257a25c9ccc41fcc4d1096732187cab16dfdb85 (patch) | |
tree | 5fc6d45a3a1ea03bd9f618999b18f6169e7127a1 /board | |
parent | e24688bb47e990fc61087a5258976113f46a9a40 (diff) | |
download | buildroot-d257a25c9ccc41fcc4d1096732187cab16dfdb85.tar.gz buildroot-d257a25c9ccc41fcc4d1096732187cab16dfdb85.zip |
board/boundarydevices: add mac parameter for BD-SDMAC in bootscript
Our new WiFi 802.11ac BT4.1 module (BD-SDMAC [1]) driver allows to
override the wlan MAC address using a module parameter.
Since its driver is now included in our external repository [2], update
the bootscript so it sets the parameter for that driver too.
As a FYI, $wlmac is based on Ethernet MAC address located in fuses.
[1] https://boundarydevices.com/product/bd_sdmac_wifi/
[2] https://github.com/boundarydevices/buildroot-external-boundary
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/boundarydevices/common/6x_bootscript.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/boundarydevices/common/6x_bootscript.txt b/board/boundarydevices/common/6x_bootscript.txt index 2fc687aff4..af5822a88b 100644 --- a/board/boundarydevices/common/6x_bootscript.txt +++ b/board/boundarydevices/common/6x_bootscript.txt @@ -106,6 +106,7 @@ fi if itest.s "x" != "x${wlmac}" ; then setenv bootargs ${bootargs} wlcore.mac=${wlmac} + setenv bootargs ${bootargs} wlan.mac=${wlmac} fi if itest.s "x" != "x${gpumem}" ; then |