Mount capifs on /dev/capi if available.

This commit is contained in:
Carsten Paeth 2000-06-29 15:17:21 +00:00
parent 751b14e309
commit d964d96274
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,9 @@
* $Id$
*
* $Log$
* Revision 1.2 2000/05/18 15:20:18 calle
* Umount capifs on "stop".
*
* Revision 1.1 2000/03/17 16:19:43 calle
* New command capiinit, this will replace avmcapictrl in the future, if
* called as "capiinit start" ist will load all modules, add all cards
@ -1060,6 +1063,10 @@ int main_start(void)
free_config(&cards);
close(capifd);
if (filesystem_available("capifs")) {
system("mount -t capifs -omode=0666 capifs /dev/capi");
}
return 0;
}