feat: Add qemu-cb-gdb target

This commit is contained in:
Berkus Decker 2022-05-19 22:22:12 +03:00
parent b52c63796c
commit fc90fde4f0
3 changed files with 12 additions and 0 deletions

View File

@ -35,6 +35,11 @@ qemu-cb:
# Connect to it via chainofcommand to load an actual kernel
cargo make qemu-cb
# Build and run chainboot in QEMU with GDB port enabled
qemu-cb-gdb:
# Connect to it via chainofcommand to load an actual kernel
cargo make qemu-cb-gdb
# Build and write kernel to an SD Card
device:
cargo make sdcard

View File

@ -33,6 +33,10 @@ disabled = true
env = { "QEMU_RUNNER_OPTS" = "${QEMU_DISASM_OPTS} -serial pty", "KERNEL_BIN" = "${CHAINBOOT_BIN}", "TARGET_DTB" = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/targets/bcm2710-rpi-3-b-plus.dtb" }
extend = "qemu-runner"
[tasks.qemu-cb-gdb]
env = { "QEMU_RUNNER_OPTS" = "${QEMU_DISASM_OPTS} ${QEMU_GDB_OPTS} -serial pty", "KERNEL_BIN" = "${CHAINBOOT_BIN}", "TARGET_DTB" = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/targets/bcm2710-rpi-3-b-plus.dtb" }
extend = "qemu-runner"
[tasks.gdb]
disabled = true

View File

@ -18,6 +18,9 @@ disabled = true
env = { "QEMU_RUNNER_OPTS" = "${QEMU_SERIAL_OPTS} ${QEMU_GDB_OPTS}", "TARGET_DTB" = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/targets/bcm2710-rpi-3-b-plus.dtb" }
extend = "qemu-runner"
[tasks.qemu-cb-gdb]
disabled = true
[tasks.chainofcommand]
disabled = true