vfs_mount_boot_file_system() now also gets the kernel_args.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9964 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-11-15 20:00:49 +00:00
parent 7ffb9bb195
commit 06db250916
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -52,9 +52,9 @@ typedef struct io_context {
extern "C" {
#endif
status_t vfs_init(struct kernel_args *ka);
status_t vfs_init(struct kernel_args *args);
status_t vfs_bootstrap_file_systems(void);
status_t vfs_mount_boot_file_system(void);
status_t vfs_mount_boot_file_system(struct kernel_args *args);
void vfs_exec_io_context(void *context);
void *vfs_new_io_context(void *parentContext);
int vfs_free_io_context(void *context);
+1 -1
View File
@@ -194,7 +194,7 @@ main2(void *unused)
// but instead, the hardware and drivers are rescanned then.
TRACE(("Mount boot file system\n"));
vfs_mount_boot_file_system();
vfs_mount_boot_file_system(&ka);
TRACE(("Init busses\n"));
bus_init(&ka);