0d4ea07bd7
The driver settings are put into the kernel_args memory section and copied on kernel startup. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10635 a95241bf-73f2-0310-859d-f6bbb57e9c96
20 lines
391 B
C
20 lines
391 B
C
/*
|
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef KERNEL_BOOT_DRIVER_SETTINGS_H
|
|
#define KERNEL_BOOT_DRIVER_SETTINGS_H
|
|
|
|
|
|
#include <util/list.h>
|
|
|
|
|
|
struct driver_settings_file {
|
|
struct driver_settings_file *next;
|
|
char name[B_OS_NAME_LENGTH];
|
|
char *buffer;
|
|
size_t size;
|
|
};
|
|
|
|
#endif /* KERNEL_BOOT_DRIVER_SETTINGS_H */
|