12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!$(PWD)../libpal.so
- loader.preload = file:$(SHIMPATH)
- loader.exec = file:make-local
- loader.execname = make-local
- loader.env.LD_LIBRARY_PATH = /lib:/lib/x86_64-linux-gnu:/usr/lib:/usr/lib/x86_64-linux-gnu
- loader.env.PATH = /bin:/usr/bin
- loader.exclude_env = USERNAME,HOME,PWD
- loader.debug_type = none
- fs.start_dir = $(PWD)
- fs.mount.root.type = chroot
- fs.mount.root.uri = file:
- fs.mount.other.lib1.type = chroot
- fs.mount.other.lib1.path = /lib
- fs.mount.other.lib1.uri = file:$(GLIBCDIR)
- fs.mount.other.lib2.type = chroot
- fs.mount.other.lib2.path = /lib/x86_64-linux-gnu
- fs.mount.other.lib2.uri = file:/lib/x86_64-linux-gnu
- fs.mount.other.bin.type = chroot
- fs.mount.other.bin.path = /bin
- fs.mount.other.bin.uri = file:/bin
- fs.mount.other.usr.type = chroot
- fs.mount.other.usr.path = /usr
- fs.mount.other.usr.uri = file:/usr
- fs.mount.other.tmp.type = chroot
- fs.mount.other.tmp.path = /tmp
- fs.mount.other.tmp.uri = file:/tmp
- fs.mount.other.pwd.type = chroot
- fs.mount.other.pwd.path = $(PWD)
- fs.mount.other.pwd.uri = file:
- sys.brk.size = 262144 # 256K
|