1/*
2 * Copyright 2005-2009, Axel D��rfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_BOOT_DEVICE_H
6#define _KERNEL_BOOT_DEVICE_H
7
8
9#include <sys/types.h>
10
11
12extern dev_t gBootDevice;
13extern bool gReadOnlyBootDevice;
14	// defined in fs/vfs_boot.cpp
15
16#endif	/* _KERNEL_BOOT_DEVICE_H */
17