meta: rename kernel to Magenta

This commit is contained in:
2026-04-30 20:30:36 +01:00
parent 560da0daa0
commit 1db6de6bc2
65 changed files with 122 additions and 122 deletions
+6 -6
View File
@@ -5,9 +5,9 @@ lldb_cfg=$2
shift 2
if command -v gdb &> /dev/null; then
printf " \033[93;1mGDB\033[0m boot/mango_kernel\n"
printf " \033[93;1mGDB\033[0m boot/magenta_kernel\n"
tmux \
new-session -d -s mango-debug "sleep 0.3; gdb -tui -x $gdb_cfg" \; \
new-session -d -s magenta-debug "sleep 0.3; gdb -tui -x $gdb_cfg" \; \
split-window -h -l 80 \; \
split-window -v -l 25 "$@"\; \
select-pane -t 1 \; \
@@ -15,9 +15,9 @@ if command -v gdb &> /dev/null; then
select-pane -t 0
elif command -v lldb &> /dev/null; then
printf " \033[93;1mLLDB\033[0m boot/mango_kernel\n"
printf " \033[93;1mLLDB\033[0m boot/magenta_kernel\n"
tmux \
new-session -d -s mango-debug "sleep 0.1; lldb --source $lldb_cfg" \; \
new-session -d -s magenta-debug "sleep 0.1; lldb --source $lldb_cfg" \; \
split-window -h -l 160 \; \
split-window -v -l 25 "$@"\; \
select-pane -t 1 \; \
@@ -28,6 +28,6 @@ else
exit -1
fi
tmux a -t mango-debug
tmux kill-session -t mango-debug
tmux a -t magenta-debug
tmux kill-session -t magenta-debug