diff options
author | Huacai Chen <chenhuacai@kernel.org> | 2020-10-16 14:51:58 +0800 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-04 23:33:38 +0100 |
commit | d2245e2de0201d7dfaff66c6851934af2d23bbfc (patch) | |
tree | cde766e0c48799c6ff7b0d8aee7b86667c505277 /hw/mips/meson.build | |
parent | 313d1e910ac0eb12bbfe83f158cab60f600319f1 (diff) | |
download | qemu-d2245e2de0201d7dfaff66c6851934af2d23bbfc.zip qemu-d2245e2de0201d7dfaff66c6851934af2d23bbfc.tar.gz qemu-d2245e2de0201d7dfaff66c6851934af2d23bbfc.tar.bz2 |
hw/mips: Add Loongson-3 boot parameter helpers
Preparing to add Loongson-3 machine support, add Loongson-3's LEFI (a
UEFI-like interface for BIOS-Kernel boot parameters) helpers first.
Co-developed-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Huacai Chen <chenhuacai@kernel.org>
Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20201221110538.3186646-4-chenhuacai@kernel.org>
[PMD: Fixed typo]
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/mips/meson.build')
-rw-r--r-- | hw/mips/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/mips/meson.build b/hw/mips/meson.build index ca5e4d0..b06329f 100644 --- a/hw/mips/meson.build +++ b/hw/mips/meson.build @@ -2,6 +2,7 @@ mips_ss = ss.source_set() mips_ss.add(files('mips_int.c')) mips_ss.add(when: 'CONFIG_FW_CFG_MIPS', if_true: files('fw_cfg.c')) mips_ss.add(when: 'CONFIG_FULOONG', if_true: files('fuloong2e.c')) +mips_ss.add(when: 'CONFIG_LOONGSON3V', if_true: files('loongson3_bootp.c')) mips_ss.add(when: 'CONFIG_JAZZ', if_true: files('jazz.c')) mips_ss.add(when: 'CONFIG_MALTA', if_true: files('gt64xxx_pci.c', 'malta.c')) mips_ss.add(when: 'CONFIG_MIPSSIM', if_true: files('mipssim.c')) |