Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ on:
- arm-zephyr-eabi
- microblazeel-zephyr-elf
- mips-zephyr-elf
- nios2-zephyr-elf
- riscv64-zephyr-elf
- rx-zephyr-elf
- sparc-zephyr-elf
Expand Down Expand Up @@ -170,7 +169,6 @@ jobs:
arm-zephyr-eabi) build_target_arm_zephyr_eabi="y";;
microblazeel-zephyr-elf) build_target_microblazeel_zephyr_elf="y";;
mips-zephyr-elf) build_target_mips_zephyr_elf="y";;
nios2-zephyr-elf) build_target_nios2_zephyr_elf="y";;
riscv64-zephyr-elf) build_target_riscv64_zephyr_elf="y";;
rx-zephyr-elf) build_target_rx_zephyr_elf="y";;
sparc-zephyr-elf) build_target_sparc_zephyr_elf="y";;
Expand Down Expand Up @@ -220,7 +218,6 @@ jobs:
build_target_arm_zephyr_eabi="y"
build_target_microblazeel_zephyr_elf="y"
build_target_mips_zephyr_elf="y"
build_target_nios2_zephyr_elf="y"
build_target_riscv64_zephyr_elf="y"
build_target_rx_zephyr_elf="y"
build_target_sparc_zephyr_elf="y"
Expand Down Expand Up @@ -310,7 +307,6 @@ jobs:
[ "${build_target_arm_zephyr_eabi}" == "y" ] && MATRIX_TARGETS+='"arm-zephyr-eabi",'
[ "${build_target_microblazeel_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"microblazeel-zephyr-elf",'
[ "${build_target_mips_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"mips-zephyr-elf",'
[ "${build_target_nios2_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"nios2-zephyr-elf",'
[ "${build_target_riscv64_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"riscv64-zephyr-elf",'
[ "${build_target_rx_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"rx-zephyr-elf",'
[ "${build_target_sparc_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"sparc-zephyr-elf",'
Expand Down Expand Up @@ -1560,9 +1556,6 @@ jobs:
mips-zephyr-elf)
PLATFORM_ARGS+="-p qemu_malta "
;;
nios2-zephyr-elf)
PLATFORM_ARGS+="-p qemu_nios2 "
;;
riscv64-zephyr-elf)
PLATFORM_ARGS+="-p qemu_riscv32 "
PLATFORM_ARGS+="-p qemu_riscv32e "
Expand Down
1 change: 0 additions & 1 deletion cmake/zephyr/target.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ else()
set(CROSS_COMPILE_TARGET_arm arm-zephyr-eabi)
endif()
set(CROSS_COMPILE_TARGET_arm64 aarch64-zephyr-elf)
set(CROSS_COMPILE_TARGET_nios2 nios2-zephyr-elf)
set(CROSS_COMPILE_TARGET_riscv riscv64-zephyr-elf)
set(CROSS_COMPILE_TARGET_mips mips-zephyr-elf)
set(CROSS_COMPILE_TARGET_rx rx-zephyr-elf)
Expand Down
8 changes: 0 additions & 8 deletions configs/nios2-zephyr-elf.config

This file was deleted.

1 change: 0 additions & 1 deletion meta-zephyr-sdk/recipes-devtools/qemu/qemu-zephyr_9.2.1.bb
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ do_install:append() {
ln -sf ../synopsys/bin/qemu-system-arc64 ${D}${bindir}/qemu-system-arc64

# Link other legacy QEMU executables
ln -sf ../legacy/bin/qemu-system-nios2 ${D}${bindir}/qemu-system-nios2
ln -sf ../legacy/bin/qemu-system-sparc ${D}${bindir}/qemu-system-sparc
}

Expand Down
1 change: 0 additions & 1 deletion meta-zephyr-sdk/recipes-devtools/qemu/qemu.inc
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ do_install:append() {
ln -sf ../synopsys/bin/qemu-system-arc64 ${D}${bindir}/qemu-system-arc64

# Link other legacy QEMU executables
ln -sf ../legacy/bin/qemu-system-nios2 ${D}${bindir}/qemu-system-nios2
ln -sf ../legacy/bin/qemu-system-sparc ${D}${bindir}/qemu-system-sparc
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ inherit autotools pkgconfig
#--disable-fdt: Cannot use if supporting ARM
#--disable-kvm: AArch64 has a QEMU/KVM board

QEMUS_BUILT = "nios2-softmmu sparc-softmmu"
QEMUS_BUILT = "sparc-softmmu"
QEMU_FLAGS = "--disable-docs --disable-sdl --disable-debug-info --disable-cap-ng \
--disable-libnfs --disable-libusb --disable-libiscsi --disable-usb-redir --disable-linux-aio\
--disable-guest-agent --disable-libssh --disable-vnc-png --disable-seccomp \
Expand Down
Loading