blob: 6e9bd379bef305f6e97e25d0f741c46500a6c00a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (C) 2007 Lauri Leukkunen <lle@rahina.org>
*
* Licensed under LGPL 2.1, see toplevel LICENSE file for details.
*
* emumode.c implements target emulation mapping profile.
* It maps everything except /tmp, /dev, /proc and /sys to
* $SBOX_TARGET_ROOT. It doesn't use the cache so there's
* no conflict between emumode and the default mapping mode.
*/
#include <mapping.h>
char *emumode_map(const char *path)
{
}
|