mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.9 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/linux/linux24/05-devfs-not-exp.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. Currently (at version 2.0.x) ROCK Linux required DevFS. It is highly
  20. useful. Later version of ROCK Linux are planed to support other variants
  21. (like old-style device nodes or udevfs).
  22. - Rene Rebe <rene@exactcode.de>
  23. --- linux-2.4.23/fs/Config.in.orig 2003-11-28 19:26:21.000000000 +0100
  24. +++ linux-2.4.23/fs/Config.in 2003-12-09 00:55:11.000000000 +0100
  25. @@ -72,13 +72,9 @@
  26. bool '/proc file system support' CONFIG_PROC_FS
  27. -# For some reason devfs corrupts memory badly on x86-64. Disable it
  28. -# for now.
  29. -if [ "$CONFIG_X86_64" != "y" ] ; then
  30. -dep_bool '/dev file system support (EXPERIMENTAL)' CONFIG_DEVFS_FS $CONFIG_EXPERIMENTAL
  31. +dep_bool '/dev file system support (Required for ROCK Linux)' CONFIG_DEVFS_FS $CONFIG_EXPERIMENTAL
  32. dep_bool ' Automatically mount at boot' CONFIG_DEVFS_MOUNT $CONFIG_DEVFS_FS
  33. dep_bool ' Debug devfs' CONFIG_DEVFS_DEBUG $CONFIG_DEVFS_FS
  34. -fi
  35. # It compiles as a module for testing only. It should not be used
  36. # as a module in general. If we make this "tristate", a bunch of people