diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-11-23 17:54:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-11-23 17:54:24 +0000 |
commit | 3d94dc62cf2bc1371350ee0737a8178f5540cf07 (patch) | |
tree | 82a9c37dd6c3d0b1ed1f24af9630526e9e4dc6d4 /target/linux | |
parent | 09d65a7960c7ef3d1ac7d3a4f412b1f0dc862470 (diff) | |
download | upstream-3d94dc62cf2bc1371350ee0737a8178f5540cf07.tar.gz upstream-3d94dc62cf2bc1371350ee0737a8178f5540cf07.tar.bz2 upstream-3d94dc62cf2bc1371350ee0737a8178f5540cf07.zip |
deny non-root access to /dev/mtd*ro
SVN-Revision: 5628
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic-2.4/patches/009-mtd_uaccess.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/generic-2.4/patches/009-mtd_uaccess.patch b/target/linux/generic-2.4/patches/009-mtd_uaccess.patch new file mode 100644 index 0000000000..dec375b324 --- /dev/null +++ b/target/linux/generic-2.4/patches/009-mtd_uaccess.patch @@ -0,0 +1,11 @@ +--- linux.old/drivers/mtd/mtdchar.c 2006-11-23 18:48:56.000000000 +0100 ++++ linux.dev/drivers/mtd/mtdchar.c 2006-11-23 18:49:11.000000000 +0100 +@@ -564,7 +564,7 @@ + sprintf(name, "%dro", mtd->index); + devfs_ro_handle[mtd->index] = devfs_register(devfs_dir_handle, name, + DEVFS_FL_DEFAULT, MTD_CHAR_MAJOR, mtd->index*2+1, +- S_IFCHR | S_IRUGO, ++ S_IFCHR | S_IRUSR, + &mtd_fops, NULL); + } + |