Moved bootfs.h and rootfs.h to src/kernel/core/fs because they are private
to the VFS, not to the whole kernel. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1184 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -15,13 +15,14 @@
|
||||
#include <arch/cpu.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <bootfs.h>
|
||||
|
||||
#include <bootdir.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bootfs.h"
|
||||
|
||||
|
||||
#define BOOTFS_TRACE 1
|
||||
|
||||
#if BOOTFS_TRACE
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
||||
** Distributed under the terms of the NewOS License.
|
||||
*/
|
||||
#ifndef _FS_BOOTFS_H_
|
||||
#define _FS_BOOTFS_H_
|
||||
|
||||
status_t bootstrap_bootfs(void);
|
||||
|
||||
#endif /* _FS_BOOTFS_H_ */
|
||||
@@ -14,11 +14,12 @@
|
||||
#include <kerrors.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <rootfs.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "rootfs.h"
|
||||
|
||||
|
||||
#define ROOTFS_TRACE 1
|
||||
|
||||
#if ROOTFS_TRACE
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
||||
** Distributed under the terms of the NewOS License.
|
||||
*/
|
||||
#ifndef _FS_ROOTFS_H_
|
||||
#define _FS_ROOTFS_H_
|
||||
|
||||
status_t bootstrap_rootfs(void);
|
||||
|
||||
#endif /* _FS_ROOTFS_H_ */
|
||||
@@ -24,9 +24,6 @@
|
||||
#include <memheap.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <elf.h>
|
||||
#include <rootfs.h>
|
||||
#include <bootfs.h>
|
||||
#include <devfs.h>
|
||||
#include <Errors.h>
|
||||
#include <kerrors.h>
|
||||
#include <atomic.h>
|
||||
@@ -34,7 +31,9 @@
|
||||
|
||||
#include <OS.h>
|
||||
|
||||
#include <rootfs.h>
|
||||
#include <devfs.h>
|
||||
#include "rootfs.h"
|
||||
#include "bootfs.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
Reference in New Issue
Block a user