mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-22 22:56:09 +00:00
17ab04db59
Instead of 'loader.debug_type', introduce 'loader.log_level' and 'loader.log_file', along with a set of definitions for logging at a chosen level. For now, the call sites keep using the legacy macros (SGX_DBG and debug()), because converting them all will conflict with other big changes in the code base. The existing LibOS calls are assumed to be at 'info' level.
17 lines
489 B
Plaintext
17 lines
489 B
Plaintext
loader.preload = "file:../../src/libsysdb.so"
|
|
libos.entrypoint = "file:bootstrap"
|
|
loader.argv0_override = "bootstrap"
|
|
|
|
loader.env.LD_LIBRARY_PATH = "/lib"
|
|
loader.log_level = "debug"
|
|
|
|
fs.mount.lib.type = "chroot"
|
|
fs.mount.lib.path = "/lib"
|
|
fs.mount.lib.uri = "file:../../../../Runtime"
|
|
|
|
sgx.trusted_files.ld = "file:../../../../Runtime/ld-linux-x86-64.so.2"
|
|
sgx.trusted_files.libc = "file:../../../../Runtime/libc.so.6"
|
|
sgx.trusted_files.bootstrap = "file:bootstrap"
|
|
|
|
sgx.nonpie_binary = 1
|