arch-specific stubs for config manager.

Will allow hardcoding ISA devices for platform faking an ISA bus, and the PC floppy and PS/2 ports.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22672 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2007-10-22 23:55:19 +00:00
parent 56a63c3b2a
commit 8c5602829e
6 changed files with 75 additions and 0 deletions
@@ -0,0 +1,10 @@
SubDir HAIKU_TOP src add-ons kernel bus_managers config_manager arch m68k ;
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) $(DOTDOT) ] ;
UsePrivateHeaders kernel [ FDirName kernel arch m68k ] ;
KernelStaticLibrary config_manager_arch :
config_manager_arch.c
;
@@ -0,0 +1,15 @@
/*
* Copyright 2007 Haiku, Inc.
* Distributed under the terms of the MIT License.
*
* arch-specific config manager
*
* Authors (in chronological order):
* François Revol ([email protected])
*/
int config_manager_scan_hardcoded(void *)
{
return B_OK;
}
@@ -0,0 +1,10 @@
SubDir HAIKU_TOP src add-ons kernel bus_managers config_manager arch ppc ;
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) $(DOTDOT) ] ;
UsePrivateHeaders kernel [ FDirName kernel arch ppc ] ;
KernelStaticLibrary config_manager_arch :
config_manager_arch.c
;
@@ -0,0 +1,15 @@
/*
* Copyright 2007 Haiku, Inc.
* Distributed under the terms of the MIT License.
*
* arch-specific config manager
*
* Authors (in chronological order):
* François Revol ([email protected])
*/
int config_manager_scan_hardcoded(void *)
{
return B_OK;
}
@@ -0,0 +1,10 @@
SubDir HAIKU_TOP src add-ons kernel bus_managers config_manager arch x86 ;
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) $(DOTDOT) ] ;
UsePrivateHeaders kernel [ FDirName kernel arch x86 ] ;
KernelStaticLibrary config_manager_arch :
config_manager_arch.c
;
@@ -0,0 +1,15 @@
/*
* Copyright 2007 Haiku, Inc.
* Distributed under the terms of the MIT License.
*
* arch-specific config manager
*
* Authors (in chronological order):
* François Revol ([email protected])
*/
int config_manager_scan_hardcoded(void *)
{
return B_OK;
}