mirror of
https://github.com/clearlinux/graphene.git
synced 2026-05-13 10:33:40 +00:00
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.
18 lines
552 B
Plaintext
18 lines
552 B
Plaintext
loader.preload = "file:../../src/libsysdb.so"
|
|
libos.entrypoint = "file:bootstrap"
|
|
loader.argv0_override = "bootstrap"
|
|
loader.env.LD_LIBRARY_PATH = "/lib"
|
|
loader.env_src_file = "file:env_test_input"
|
|
|
|
fs.mount.lib.type = "chroot"
|
|
fs.mount.lib.path = "/lib"
|
|
fs.mount.lib.uri = "file:../../../../Runtime"
|
|
|
|
sgx.allowed_files.env = "file:env_test_input"
|
|
|
|
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
|