mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-29 01:58:55 +00:00
22 lines
508 B
C
22 lines
508 B
C
|
/**
|
||
|
* \brief x86 specific definitions for RUMP cgd
|
||
|
* \author Josef Soentgen
|
||
|
* \date 2014-04-11
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2014 Genode Labs GmbH
|
||
|
*
|
||
|
* This file is part of the Genode OS framework, which is distributed
|
||
|
* under the terms of the GNU General Public License version 2.
|
||
|
*/
|
||
|
#ifndef _INCLUDE__X86_RUMP_CGD__DEVICE_H_
|
||
|
#define _INCLUDE__X86_RUMP_CGD__DEVICE_H_
|
||
|
|
||
|
/**
|
||
|
* Cgd raw device used within rump
|
||
|
*/
|
||
|
#define CGD_RAW_DEVICE "/dev/rcgd0d"
|
||
|
|
||
|
#endif /* _INCLUDE__X86_RUMP_CGD__DEVICE_H_ */
|