From d6887bccee783f429f03c43fdd331cb1dbf06fa7 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Mon, 10 Jul 2023 02:12:28 +0300 Subject: [PATCH] =?UTF-8?q?refactor(build):=20=F0=9F=93=A6=20Use=20single?= =?UTF-8?q?=20gdb-config=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile.toml | 3 +++ nucleus/Makefile.toml | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index b2e160a..a12406c 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -176,8 +176,11 @@ script = [ ''' writefile ${GDB_CONNECT_FILE} "target extended-remote :5555\n" appendfile ${GDB_CONNECT_FILE} "break *0x80000\n" + appendfile ${GDB_CONNECT_FILE} "break kernel_main\n" + echo Generated GDB config file ''' ] +#appendfile ${GDB_CONNECT_FILE} "continue\n" ## Generate zellij configuration file. [tasks.zellij-config] diff --git a/nucleus/Makefile.toml b/nucleus/Makefile.toml index 3e2fad7..44f9872 100644 --- a/nucleus/Makefile.toml +++ b/nucleus/Makefile.toml @@ -34,16 +34,6 @@ disabled = true [tasks.zellij-cb-gdb] disabled = true -[tasks.gdb-config] -script_runner = "@duckscript" -script = [ -''' - writefile ${GDB_CONNECT_FILE} "target extended-remote :5555\n" - appendfile ${GDB_CONNECT_FILE} "break *0x80000\n" - appendfile ${GDB_CONNECT_FILE} "continue\n" -''' -] - [tasks.gdb] dependencies = ["build", "kernel-binary", "gdb-config"] env = { "RUST_GDB" = "${GDB}" }