forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: move qemu definitions to boards
Change-Id: I4e87dbd6eea8320f23e5691c1762a7353240a5c8 Signed-off-by: Anas Nashif <[email protected]>
- Loading branch information
Showing
6 changed files
with
25 additions
and
22 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
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
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
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 |
---|---|---|
@@ -1,5 +1,12 @@ | ||
|
||
QEMU_CPU_TYPE_arm = cortex-m3 | ||
QEMU_FLAGS_arm = -cpu $(QEMU_CPU_TYPE_arm) \ | ||
-machine lm3s6965evb -nographic -vga none | ||
QEMU_arm = qemu-system-arm | ||
|
||
DEBUG_SCRIPT = qemu.sh | ||
|
||
debugserver: QEMU_EXTRA_FLAGS += -s -S | ||
debugserver: qemu | ||
|
||
export QEMU_FLAGS_arm QEMU_arm |
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
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 |
---|---|---|
@@ -1,5 +1,19 @@ | ||
|
||
QEMU_BIOS ?= /usr/share/qemu | ||
QEMU_CPU_TYPE_x86 = qemu32 | ||
QEMU_X86_NO_REBOOT_y = | ||
QEMU_X86_NO_REBOOT_ = -no-reboot | ||
QEMU_FLAGS_x86 = -m 32 -cpu $(QEMU_CPU_TYPE_x86) \ | ||
$(QEMU_X86_NO_REBOOT_$(CONFIG_REBOOT)) \ | ||
-nographic -vga none -display none -net none \ | ||
-clock dynticks -no-acpi -balloon none \ | ||
-L $(QEMU_BIOS) -bios bios.bin \ | ||
-machine type=pc-0.14 | ||
QEMU_x86 = qemu-system-i386 | ||
|
||
DEBUG_SCRIPT = qemu.sh | ||
|
||
debugserver: QEMU_EXTRA_FLAGS += -s -S | ||
debugserver: qemu | ||
|
||
export QEMU_FLAGS_x86 QEMU_x86 QEMU_CPU_TYPE_x86 |