1. 11 5月, 2007 1 次提交
  2. 10 5月, 2007 1 次提交
  3. 15 3月, 2007 1 次提交
  4. 12 2月, 2007 1 次提交
    • A
      [PATCH] sort the devres mess out · 5ea81769
      Al Viro 提交于
      * Split the implementation-agnostic stuff in separate files.
      * Make sure that targets using non-default request_irq() pull
        kernel/irq/devres.o
      * Introduce new symbols (HAS_IOPORT and HAS_IOMEM) defaulting to positive;
        allow architectures to turn them off (we needed these symbols anyway for
        dependencies of quite a few drivers).
      * protect the ioport-related parts of lib/devres.o with CONFIG_HAS_IOPORT.
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      5ea81769
  5. 09 12月, 2006 1 次提交
  6. 21 10月, 2006 2 次提交
    • P
      [PATCH] uml: use DEFCONFIG_LIST to avoid reading host's config · b2670eac
      Paolo 'Blaisorblade' Giarrusso 提交于
      This should make sure that, for UML, host's configuration files are not
      considered, which avoids various pains to the user.  Our dependency are such
      that the obtained Kconfig will be valid and will lead to successful
      compilation - however they cannot prevent an user from disabling any boot
      device, and if an option is not set in the read .config (say
      /boot/config-XXX), with make menuconfig ARCH=um, it is not set.  This always
      disables UBD and all console I/O channels, which leads to non-working UML
      kernels, so this bothers users - especially now, since it will happen on
      almost every machine (/boot/config-`uname -r` exists almost on every machine).
       It can be workarounded with make defconfig ARCH=um, but it is non-obvious and
      can be avoided, so please _do_ merge this patch.
      
      Given the existence of options, it could be interesting to implement
      (additionally) "option required" - with it, Kconfig will refuse reading a
      .config file (from wherever it comes) if the given option is not set.  With
      this, one could mark with it the option characteristic of the given
      architecture (it was an old proposal of Roman Zippel, when I pointed out our
      problem):
      
      config UML
      	option required
      	default y
      
      However this should be further discussed:
      *) for x86, it must support constructs like:
      
      ==arch/i386/Kconfig==
      config 64BIT
      	option required
      	default n
      where Kconfig must require that CONFIG_64BIT is disabled or not present in the
      read .config.
      
      *) do we want to do such checks only for the starting defconfig or also for
         .config? Which leads to:
      *) I may want to port a x86_64 .config to x86 and viceversa, or even among more
         different archs. Should that be allowed, and in which measure (the user may
         force skipping the check for a .config or it is only given a warning by
         default)?
      
      Cc: Roman Zippel <zippel@linux-m68k.org>
      Cc: <kbuild-devel@lists.sourceforge.net>
      Signed-off-by: NPaolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Cc: Jeff Dike <jdike@addtoit.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      b2670eac
    • J
      [PATCH] uml: MODE_TT is bust · 1a3e9ad1
      Jeff Dike 提交于
      arch/um/sys-x86_64/ptrace.c:20:1: warning: "SC_SS" redefined
      In file included from arch/um/include/sysdep/ptrace.h:18,
                       from include/asm/ptrace-generic.h:12,
                       from include/asm/ptrace.h:15,
                       from arch/um/sys-x86_64/ptrace.c:8:
      arch/um/include/sysdep/sc.h:38:1: warning: this is the location of the previous definition
      arch/um/sys-x86_64/ptrace.c: In function 'putreg':
      arch/um/sys-x86_64/ptrace.c:63: warning: implicit declaration of function 'SC_FS_BASE'
      arch/um/sys-x86_64/ptrace.c:63: error: invalid lvalue in unary '&'
      arch/um/sys-x86_64/ptrace.c:63: warning: implicit declaration of function 'SC_GS_BASE'
      arch/um/sys-x86_64/ptrace.c:63: error: invalid lvalue in unary '&'
      arch/um/sys-x86_64/ptrace.c: In function 'getreg':
      arch/um/sys-x86_64/ptrace.c:101: error: invalid lvalue in unary '&'
      arch/um/sys-x86_64/ptrace.c:101: error: invalid lvalue in unary '&'
      
      I'd have to say that the fix for this, for now, is this:
      
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1a3e9ad1
  7. 12 10月, 2006 2 次提交
  8. 04 10月, 2006 1 次提交
  9. 02 5月, 2006 1 次提交
  10. 01 4月, 2006 1 次提交
  11. 19 1月, 2006 1 次提交
    • P
      [PATCH] uml: arch Kconfig menu cleanups · ce2d2aed
      Paolo 'Blaisorblade' Giarrusso 提交于
      *) mark as "EXPERIMENTAL" various items that either aren't very stable or
         that are actively crashing the setup of users which don't really need them
         (i.e.  HIGHMEM and 3-level pagetables on x86 - nobody needs either,
         everybody reports "I'm using it and getting trouble").
      
      *) move net/Kconfig near to the rest of network configurations, and
         drivers/block/Kconfig near "Block layer" submenu.
      
      *) it's useless and doesn't work well to force NETDEVICES on and to disable
         the prompt like it's done.  Better remove the attempt, and change that to a
         simple "default y if UML".
      
      *) drop the warning about "report problems about HPPFS" - it's redundant
         anyway, as that's the usual procedure, and HPPFS users are especially
         technical (i.e.  they know reporting bugs is _good_).
      Signed-off-by: NPaolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Cc: Jeff Dike <jdike@addtoit.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      ce2d2aed
  12. 12 1月, 2006 1 次提交
  13. 09 1月, 2006 2 次提交
  14. 19 12月, 2005 1 次提交
  15. 14 11月, 2005 2 次提交
  16. 07 11月, 2005 1 次提交
  17. 31 10月, 2005 2 次提交
  18. 05 9月, 2005 2 次提交
  19. 12 7月, 2005 1 次提交
    • S
      [NET]: add a top-level Networking menu to *config · d5950b43
      Sam Ravnborg 提交于
      Create a new top-level menu named "Networking" thus moving
      net related options and protocol selection way from the drivers
      menu and up on the top-level where they belong.
      
      To implement this all architectures has to source "net/Kconfig" before
      drivers/*/Kconfig in their Kconfig file. This change has been
      implemented for all architectures.
      
      Device drivers for ordinary NIC's are still to be found
      in the Device Drivers section, but Bluetooth, IrDA and ax25
      are located with their corresponding menu entries under the new
      networking menu item.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      d5950b43
  20. 08 7月, 2005 1 次提交
  21. 24 6月, 2005 1 次提交
  22. 22 6月, 2005 1 次提交
  23. 01 5月, 2005 1 次提交
  24. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4