forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ath79: support Ubiquiti Bullet M XW modded with 16MB Flash
Signed-off-by: Lech Perczak <lech.perczak@gmail.com>
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT | ||
|
||
#include "ar9342_ubnt_bullet-m-xw.dts" | ||
|
||
/ { | ||
model = "Ubiquiti Nanostation Loco M (XW) (16M)"; | ||
}; | ||
|
||
|
||
&spi { | ||
status = "okay"; | ||
|
||
flash@0 { | ||
partitions { | ||
partition@50000 { | ||
reg = <0x050000 0xf60000>; | ||
}; | ||
|
||
/delete-node/ partition@7b0000; | ||
partition@fb0000 { | ||
label = "cfg"; | ||
reg = <0xfb0000 0x040000>; | ||
read-only; | ||
}; | ||
|
||
/delete-node/ partition@7f0000; | ||
art: partition@ff0000 { | ||
label = "art"; | ||
reg = <0xff0000 0x010000>; | ||
read-only; | ||
|
||
compatible = "nvmem-cells"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
|
||
macaddr_art_0: macaddr@0 { | ||
reg = <0x0 0x6>; | ||
}; | ||
|
||
calibration_art_1000: calibration@1000 { | ||
reg = <0x1000 0x440>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
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