diff options
| author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2024-07-10 16:35:23 +1200 |
|---|---|---|
| committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2024-07-12 13:12:13 +0200 |
| commit | 662c0002ca2e1379d0e80be1a4e07ab47c9eee48 (patch) | |
| tree | 425e2816e512d6a2ea4d530c0fa54480cb372c92 /arch/mips/generic/Makefile | |
| parent | 62b8db3afe3e93dd14baeddf081fe1200d5610e3 (diff) | |
| download | linux-662c0002ca2e1379d0e80be1a4e07ab47c9eee48.tar.gz linux-662c0002ca2e1379d0e80be1a4e07ab47c9eee48.tar.bz2 linux-662c0002ca2e1379d0e80be1a4e07ab47c9eee48.zip | |
mips: generic: add fdt fixup for Realtek reference board
The bootloader used on the Realtek RTL9302C boards is an ancient vendor
fork of U-Boot that doesn't understand device trees. So to run a modern
kernel it is necessary use one of the APPENDED_DTB options.
When appending the DTB the inintrd information, if present, needs to be
inserted into the /chosen device tree node. The bootloader provides the
initrd start/size via the firmware environment. Add a fdt fixup that
will update the device tree with the initrd information.
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/generic/Makefile')
| -rw-r--r-- | arch/mips/generic/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/generic/Makefile b/arch/mips/generic/Makefile index 56011d738441..ea0e4ad5e600 100644 --- a/arch/mips/generic/Makefile +++ b/arch/mips/generic/Makefile @@ -13,3 +13,4 @@ obj-$(CONFIG_LEGACY_BOARD_SEAD3) += board-sead3.o obj-$(CONFIG_LEGACY_BOARD_OCELOT) += board-ocelot.o obj-$(CONFIG_MACH_INGENIC) += board-ingenic.o obj-$(CONFIG_VIRT_BOARD_RANCHU) += board-ranchu.o +obj-$(CONFIG_MACH_REALTEK_RTL) += board-realtek.o |
