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:
Axel Dörfler
2002-09-26 01:13:42 +00:00
parent a16194144d
commit d8f40dbc54
5 changed files with 29 additions and 8 deletions
+3 -2
View File
@@ -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
+10
View File
@@ -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_ */
+3 -2
View File
@@ -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
+10
View File
@@ -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_ */
+3 -4
View File
@@ -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>