Create a script that builds a simple-to-read symbol table from the output of `nm`. Include running that script over the kernel in the build, and including that output in the initrd. Tags: callstack debugging
28 lines
793 B
TOML
28 lines
793 B
TOML
# This is the manifest for the initial ramdisk, read by the `makerd` tool.
|
|
# The contents should be a table array of files to add to the ramdistk:
|
|
#
|
|
# [[files]]
|
|
# dest = "foo.bar" # Name of the file in the ramdisk
|
|
# source = "build/foo/foo.bar" # Location of the file from the project root
|
|
# executable = true # Optional, default false. Whether this is an
|
|
# # initial application for the kernel to execute
|
|
# # on startup
|
|
|
|
[[files]]
|
|
dest = "screenfont.psf"
|
|
source = "../assets/fonts/tamsyn8x16r.psf"
|
|
|
|
[[files]]
|
|
dest = "symbol_table.dat"
|
|
source = "symbol_table.dat"
|
|
|
|
[[files]]
|
|
dest = "nulldrv1"
|
|
source = "user/nulldrv"
|
|
executable = true
|
|
|
|
[[files]]
|
|
dest = "nulldrv2"
|
|
source = "user/nulldrv"
|
|
executable = true
|