mkosi: Add a postinstall script to setup .gdbinit.

systemd is compiled with relative source file paths so we need to
issue a directory command to make sure gdb can find systemd's
source files. Let's put this in a .gdbinit file so it's executed
automatically when we run gdb.
This commit is contained in:
Daan De Meyer 2021-01-23 17:26:33 +00:00
parent 7a1fed85d7
commit d8067d4041

5
mkosi.postinst Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
set -e
mkdir -p /root/build
echo "directory /root/build" > ~/.gdbinit