Message ID | 20240316135430.826898-4-christianshewitt@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | ARM: dts: fix Ethernet and random MAC's on WeTek Hub/Play2 | expand |
Hi, On 16/03/2024 14:54, Christian Hewitt wrote: > Add CONFIG_SYS_BOARD="p200" to the Hub/Play2 board configs to ensure the > factory programmed MAC is correctly read from efuse. > > Signed-off-by: Christian Hewitt <christianshewitt@gmail.com> > --- > configs/wetek-hub_defconfig | 1 + > configs/wetek-play2_defconfig | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/configs/wetek-hub_defconfig b/configs/wetek-hub_defconfig > index fd92b041e73..413bbfe9ab7 100644 > --- a/configs/wetek-hub_defconfig > +++ b/configs/wetek-hub_defconfig > @@ -1,5 +1,6 @@ > CONFIG_ARM=y > CONFIG_ARCH_MESON=y > +CONFIG_SYS_BOARD="p200" > CONFIG_TEXT_BASE=0x01000000 > CONFIG_NR_DRAM_BANKS=1 > CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y > diff --git a/configs/wetek-play2_defconfig b/configs/wetek-play2_defconfig > index b887419a6ba..dd98929444c 100644 > --- a/configs/wetek-play2_defconfig > +++ b/configs/wetek-play2_defconfig > @@ -1,5 +1,6 @@ > CONFIG_ARM=y > CONFIG_ARCH_MESON=y > +CONFIG_SYS_BOARD="p200" > CONFIG_TEXT_BASE=0x01000000 > CONFIG_NR_DRAM_BANKS=1 > CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y CONFIG_SYS_BOARD="p200" is already the default value for MESON_GXBB, see arch/arm/mach-meson/Kconfig Neil
diff --git a/configs/wetek-hub_defconfig b/configs/wetek-hub_defconfig index fd92b041e73..413bbfe9ab7 100644 --- a/configs/wetek-hub_defconfig +++ b/configs/wetek-hub_defconfig @@ -1,5 +1,6 @@ CONFIG_ARM=y CONFIG_ARCH_MESON=y +CONFIG_SYS_BOARD="p200" CONFIG_TEXT_BASE=0x01000000 CONFIG_NR_DRAM_BANKS=1 CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y diff --git a/configs/wetek-play2_defconfig b/configs/wetek-play2_defconfig index b887419a6ba..dd98929444c 100644 --- a/configs/wetek-play2_defconfig +++ b/configs/wetek-play2_defconfig @@ -1,5 +1,6 @@ CONFIG_ARM=y CONFIG_ARCH_MESON=y +CONFIG_SYS_BOARD="p200" CONFIG_TEXT_BASE=0x01000000 CONFIG_NR_DRAM_BANKS=1 CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
Add CONFIG_SYS_BOARD="p200" to the Hub/Play2 board configs to ensure the factory programmed MAC is correctly read from efuse. Signed-off-by: Christian Hewitt <christianshewitt@gmail.com> --- configs/wetek-hub_defconfig | 1 + configs/wetek-play2_defconfig | 1 + 2 files changed, 2 insertions(+)