diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2013-05-29 11:51:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-30 20:59:12 +0100 |
commit | 4844884d13fc8422f6cb088b92f160eaa8e4e1b9 (patch) | |
tree | 95be7ee4e7a08352a07c51228902b675cf63232c /meta/recipes-devtools | |
parent | 6804eec62515c57df81a385f84573982d27b22be (diff) | |
download | poky-4844884d13fc8422f6cb088b92f160eaa8e4e1b9.tar.gz |
makedevs: Correct the device number calculation for blocks of devices
If the increment > 1 and the start > 0 then the calculation for the
minor device number was incorrect.
(From OE-Core rev: 0a878426bee607a7d961ba475a7ec7e89115df35)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index 247d6c1c3c..d58e8911a6 100644 --- a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c +++ b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | |||
@@ -226,7 +226,7 @@ static int interpret_table_entry(char *line) | |||
226 | sprintf(path, "%s/%s%d", rootdir, name, i); | 226 | sprintf(path, "%s/%s%d", rootdir, name, i); |
227 | /* FIXME: MKDEV uses illicit insider knowledge of kernel | 227 | /* FIXME: MKDEV uses illicit insider knowledge of kernel |
228 | * major/minor representation... */ | 228 | * major/minor representation... */ |
229 | rdev = MKDEV(major, minor + (i * increment - start)); | 229 | rdev = MKDEV(major, minor + (i - start) * increment); |
230 | add_new_device(buf, path, uid, gid, mode, rdev); | 230 | add_new_device(buf, path, uid, gid, mode, rdev); |
231 | } | 231 | } |
232 | } else { | 232 | } else { |