udev.h | udev.h | |||
---|---|---|---|---|
skipping to change at line 58 | skipping to change at line 58 | |||
DEV_DEVICE, | DEV_DEVICE, | |||
}; | }; | |||
struct udevice { | struct udevice { | |||
char devpath[PATH_SIZE]; | char devpath[PATH_SIZE]; | |||
char subsystem[NAME_SIZE]; | char subsystem[NAME_SIZE]; | |||
char action[NAME_SIZE]; | char action[NAME_SIZE]; | |||
enum device_type type; | enum device_type type; | |||
char name[PATH_SIZE]; | char name[PATH_SIZE]; | |||
int name_set; | ||||
char devname[PATH_SIZE]; | char devname[PATH_SIZE]; | |||
struct list_head symlink_list; | struct list_head symlink_list; | |||
int symlink_final; | int symlink_final; | |||
char owner[USER_SIZE]; | char owner[USER_SIZE]; | |||
int owner_final; | int owner_final; | |||
char group[USER_SIZE]; | char group[USER_SIZE]; | |||
int group_final; | int group_final; | |||
mode_t mode; | mode_t mode; | |||
int mode_final; | int mode_final; | |||
dev_t devt; | dev_t devt; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 0 lines changed or added | |||
udev_rules.h | udev_rules.h | |||
---|---|---|---|---|
skipping to change at line 69 | skipping to change at line 69 | |||
struct key subsystem; | struct key subsystem; | |||
struct key action; | struct key action; | |||
struct key devpath; | struct key devpath; | |||
struct key bus; | struct key bus; | |||
struct key id; | struct key id; | |||
struct key driver; | struct key driver; | |||
struct key program; | struct key program; | |||
struct key result; | struct key result; | |||
struct key modalias; | struct key modalias; | |||
struct key import; | struct key import; | |||
struct key wait_for_sysfs; | ||||
struct key_pairs sysfs; | struct key_pairs sysfs; | |||
struct key_pairs env; | struct key_pairs env; | |||
struct key name; | struct key name; | |||
struct key symlink; | struct key symlink; | |||
struct key run; | struct key run; | |||
struct key owner; | struct key owner; | |||
struct key group; | struct key group; | |||
enum key_operation mode_operation; | enum key_operation mode_operation; | |||
mode_t mode; | mode_t mode; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
udev_version.h | udev_version.h | |||
---|---|---|---|---|
#define UDEV_VERSION "061" | #define UDEV_VERSION "062" | |||
#define UDEV_ROOT "/dev" | #define UDEV_ROOT "/dev" | |||
#define UDEV_DB "/dev/.udevdb" | #define UDEV_DB "/dev/.udevdb" | |||
#define UDEV_CONFIG_DIR "/etc/udev" | #define UDEV_CONFIG_DIR "/etc/udev" | |||
#define UDEV_CONFIG_FILE "/etc/udev/udev.conf" | #define UDEV_CONFIG_FILE "/etc/udev/udev.conf" | |||
#define UDEV_RULES_FILE "/etc/udev/rules.d" | #define UDEV_RULES_FILE "/etc/udev/rules.d" | |||
#define UDEV_BIN "/sbin/udev" | #define UDEV_BIN "/sbin/udev" | |||
#define UDEVD_BIN "/sbin/udevd" | #define UDEVD_BIN "/sbin/udevd" | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||