Hello.
I'm sorry for this sudden e-mail but I'm writing because I would like you to look over the attached simple patches which modify only typo. I'm a member of the group whose members translate technical documents into Japanese (JF project; http://www.linux.or.jp/JF/). I translated all the files in the kbuild directory and then noticed the typo. If there are no problems in the patches, it will be glad for you to apply them. The kernel version to which these patches apply is '2.4.12'. Thank you, Takahiko KAWASAKI <[EMAIL PROTECTED]> ============================================= diff -urN -X dontdiff linux-vanilla/Documentation/kbuild/config-language.txt /devel/linux-2.4/Documentation/kbuild/config-language.txt --- linux-vanilla/Documentation/kbuild/config-language.txt Sat Aug 5 10:38:44 2000 +++ /devel/linux-2.4/Documentation/kbuild/config-language.txt Mon Oct 15 15:15:41 +2001 @@ -59,7 +59,7 @@ === Statements -A Config Language script is a list of statements. There are 21 simple +A Config Language script is a list of statements. There are 22 simple statements; an 'if' statement; menu blocks; and a 'source' statement. A '\' at the end of a line marks a line continuation. @@ -333,7 +333,7 @@ === define_bool /symbol/ /word/ -This verb the value of /word/ to /symbol/. Legal values are "n" or "y". +This verb assigns the value of /word/ to /symbol/. Legal values are "n" or "y". For compatibility reasons, the value of "m" is also legal, because it will be a while before define_tristate is implemented everywhere. @@ -478,9 +478,9 @@ restricts the input range to "n". Quoting dependencies is not allowed. Using dependencies with an empty value possible is not recommended. -If the input range is restricted to the single choice "n", dep_bool +If the input range is restricted to the single choice "n", dep_mbool silently assigns "n" to /symbol/. If the input range has more than -one choice, dep_bool displays /prompt/ to the user, accepts a value +one choice, dep_mbool displays /prompt/ to the user, accepts a value from the user, and assigns that value to /symbol/. Notice that the only difference between dep_bool and dep_mbool diff -urN -X dontdiff linux-vanilla/Documentation/kbuild/makefiles.txt /devel/linux-2.4/Documentation/kbuild/makefiles.txt --- linux-vanilla/Documentation/kbuild/makefiles.txt Wed Feb 14 07:13:42 2001 +++ /devel/linux-2.4/Documentation/kbuild/makefiles.txt Mon Oct 15 15:22:13 2001 @@ -154,8 +154,8 @@ to determine which files to compile. By default, the top Makefile sets $(ARCH) to be the same as the - host system system architecture. For a cross build, a user may - override the value of $(ARCH) on the command line: + host system architecture. For a cross build, a user may override + the value of $(ARCH) on the command line: make ARCH=m68k ... @@ -892,7 +892,7 @@ $(MIX_OBJS) can also be used simply to list all objects that export any symbols. If this approach is taken, then $(O_OBJS), $(L_OBJS), $(M_OBJS) and $(MI_OBJS) should simply - lists all of the vmlinux object files, library object files, + list all of the vmlinux object files, library object files, module object files and intermediate module files respectively. Duplication between $(MI_OBJS) and $(MIX_OBJS) is not a problem. @@ -1214,7 +1214,7 @@ # fs/Makefile mod-subdirs := nls - This means nls should be added to (subdir-y) and $(subdir-m) if + This means nls should be added to $(subdir-y) and $(subdir-m) if CONFIG_NFS = y. --- 8.2 Converting to old-style _______________________________________________ kbuild-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/kbuild-devel
