]> git.pld-linux.org Git - packages/kernel.git/blob - delta-vroot-fix01.diff
- ported from linux-2.4.25-atmdd.patch
[packages/kernel.git] / delta-vroot-fix01.diff
1 ;
2 ; this issue was found on Aug. 11th 2005 by the famous
3 ; guru Brian "Neubix" ...
4 ;
5 --- ./drivers/block/vroot.c.orig        2005-08-09 03:47:35 +0200
6 +++ ./drivers/block/vroot.c     2005-08-11 15:30:26 +0200
7 @@ -265,3 +268,15 @@ void vroot_exit(void)
8  module_init(vroot_init);
9  module_exit(vroot_exit);
10  
11 +#ifndef MODULE
12 +
13 +static int __init max_vroot_setup(char *str)
14 +{
15 +       max_vroot = simple_strtol(str, NULL, 0);
16 +       return 1;
17 +}
18 +
19 +__setup("max_vroot=", max_vroot_setup);
20 +
21 +#endif
22 +
This page took 0.028656 seconds and 3 git commands to generate.