diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-02-14 06:03:06 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:36:12 -0700 |
commit | fd9efc00a2e477423185c993b8ec4570ef3ee07d (patch) | |
tree | 08f7ddb6e135ef5101bf058cb91cdf293076a976 /udev_add.c | |
parent | e57e7bc10811fa87e5775012da9e9b2fb67099c3 (diff) |
[PATCH] introduce OPTIONS=ignore_device, ignore_remove, all_partitions" key
Here we move all possible options into a own key to make it possible
to have options-only rules.
The options on the NAME key are removed from the man page and will
be removed from a future version of udev.
For ignore rules, OPTIONS="ignore" should be used.
The rule:
SUBSYSTEM="block", SYSFS{removable}="1", OPTIONS="all_partitions"
will create all partitions for a block device which is known to have
removable media (a check for cdrom drives would be needed too).
Diffstat (limited to 'udev_add.c')
-rw-r--r-- | udev_add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_add.c b/udev_add.c index be62e130ab..f384ea96e5 100644 --- a/udev_add.c +++ b/udev_add.c @@ -194,7 +194,7 @@ static int create_node(struct udevice *udev, struct sysfs_class_device *class_de } /* create all_partitions if requested */ - if (udev->partitions > 0) { + if (udev->partitions) { struct sysfs_attribute *attr; int range; |