moved service configuration out of system.conf
This commit is contained in:
parent
2b5c7b7d77
commit
a5696e751c
|
|
@ -549,20 +549,6 @@ service pckbd
|
|||
priority 1;
|
||||
};
|
||||
|
||||
service hello
|
||||
{
|
||||
system
|
||||
IRQCTL # 19
|
||||
DEVIO # 21
|
||||
;
|
||||
ipc
|
||||
SYSTEM pm rs tty ds vm vfs
|
||||
pci inet lwip amddev
|
||||
;
|
||||
uid 0;
|
||||
};
|
||||
|
||||
|
||||
service devman
|
||||
{
|
||||
uid 0;
|
||||
|
|
@ -669,21 +655,6 @@ service tps65950
|
|||
ipc SYSTEM RS DS i2c readclock.drv;
|
||||
};
|
||||
|
||||
service tsl2550
|
||||
{
|
||||
ipc SYSTEM RS DS i2c;
|
||||
};
|
||||
|
||||
service sht21
|
||||
{
|
||||
ipc SYSTEM RS DS i2c;
|
||||
};
|
||||
|
||||
service bmp085
|
||||
{
|
||||
ipc SYSTEM RS DS i2c;
|
||||
};
|
||||
|
||||
service vbox
|
||||
{
|
||||
system
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@
|
|||
PROG= hello
|
||||
SRCS= hello.c
|
||||
|
||||
FILES=$(PROG).conf
|
||||
FILESNAME=$(PROG)
|
||||
FILESDIR= /etc/system.conf.d
|
||||
|
||||
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
|
||||
LDADD+= -lchardriver -lsys
|
||||
|
||||
|
|
|
|||
13
minix/drivers/examples/hello/hello.conf
Normal file
13
minix/drivers/examples/hello/hello.conf
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
service hello
|
||||
{
|
||||
system
|
||||
IRQCTL # 19
|
||||
DEVIO # 21
|
||||
;
|
||||
ipc
|
||||
SYSTEM pm rs tty ds vm vfs
|
||||
pci inet lwip amddev
|
||||
;
|
||||
uid 0;
|
||||
};
|
||||
|
||||
|
|
@ -1,6 +1,11 @@
|
|||
# Makefile for the bmp085 pressure and temp sensor found on the Weather Cape.
|
||||
PROG= bmp085
|
||||
SRCS= bmp085.c
|
||||
|
||||
PROG= bmp085
|
||||
SRCS= bmp085.c
|
||||
|
||||
FILES=$(PROG).conf
|
||||
FILESNAME=$(PROG)
|
||||
FILESDIR= /etc/system.conf.d
|
||||
|
||||
DPADD+= ${LIBI2CDRIVER} ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
|
||||
LDADD+= -li2cdriver -lchardriver -lsys -ltimers
|
||||
|
|
|
|||
5
minix/drivers/sensors/bmp085/bmp085.conf
Normal file
5
minix/drivers/sensors/bmp085/bmp085.conf
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
service bmp085
|
||||
{
|
||||
ipc SYSTEM RS DS i2c;
|
||||
};
|
||||
|
||||
|
|
@ -1,6 +1,11 @@
|
|||
# Makefile for the sht21 humidity and temp sensor found on the Weather Cape.
|
||||
PROG= sht21
|
||||
SRCS= sht21.c
|
||||
|
||||
PROG= sht21
|
||||
SRCS= sht21.c
|
||||
|
||||
FILES=$(PROG).conf
|
||||
FILESNAME=$(PROG)
|
||||
FILESDIR= /etc/system.conf.d
|
||||
|
||||
DPADD+= ${LIBI2CDRIVER} ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
|
||||
LDADD+= -li2cdriver -lchardriver -lsys -ltimers
|
||||
|
|
|
|||
5
minix/drivers/sensors/sht21/sht21.conf
Normal file
5
minix/drivers/sensors/sht21/sht21.conf
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
service sht21
|
||||
{
|
||||
ipc SYSTEM RS DS i2c;
|
||||
};
|
||||
|
||||
|
|
@ -1,6 +1,11 @@
|
|||
# Makefile for the tsl2550 ambient light sensor found on the Weather Cape.
|
||||
PROG= tsl2550
|
||||
SRCS= tsl2550.c
|
||||
|
||||
PROG= tsl2550
|
||||
SRCS= tsl2550.c
|
||||
|
||||
FILES=$(PROG).conf
|
||||
FILESNAME=$(PROG)
|
||||
FILESDIR= /etc/system.conf.d
|
||||
|
||||
DPADD+= ${LIBI2CDRIVER} ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
|
||||
LDADD+= -li2cdriver -lchardriver -lsys -ltimers
|
||||
|
|
|
|||
5
minix/drivers/sensors/tsl2550/tsl2550.conf
Normal file
5
minix/drivers/sensors/tsl2550/tsl2550.conf
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
service tsl2550
|
||||
{
|
||||
ipc SYSTEM RS DS i2c;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user