mirror of
https://github.com/systemd/systemd.git
synced 2026-07-24 08:20:59 +00:00
Here is a slightly better version that prints the usage if a unknown option is given:
kay@pim:~/src/udev.kay$ ./udev -x
./udev: invalid option -- x
Usage: [-qrVh]
-q arg query database
-r print udev root
-V print udev version
-h print this help text
> Here is a patch that makes it possible to call udev with options on the command line.
> Valid options are for now:
>
> -V for the udev version:
> kay@pim:~/src/udev.kay$ ./udev -V
> udev, version 011_bk
>
> -r for the udev root:
> kay@pim:~/src/udev.kay$ ./udev -r
> /udev/
>
> -q to query the database with the sysfs path for the name of the node:
> kay@pim:~/src/udev.kay$ ./udev -q /class/video4linux/video0
> test/video/webcam0
21 lines
575 B
C
21 lines
575 B
C
/*
|
|
* udevdb header file
|
|
*/
|
|
#ifndef _UDEVDB_H_
|
|
#define _UDEVDB_H_
|
|
|
|
/* Udevdb initialization flags */
|
|
#define UDEVDB_DEFAULT 0 /* defaults database to use file */
|
|
#define UDEVDB_INTERNAL 1 /* don't store db on disk, use in memory */
|
|
|
|
/* function prototypes */
|
|
extern void udevdb_exit(void);
|
|
extern int udevdb_init(int init_flag);
|
|
extern int udevdb_open_ro(void);
|
|
|
|
extern int udevdb_add_dev(const char *path, const struct udevice *dev);
|
|
extern int udevdb_get_dev(const char *path, struct udevice *dev);
|
|
extern int udevdb_delete_dev(const char *path);
|
|
|
|
#endif /* _UDEVDB_H_ */
|