1. 14 6月, 2017 1 次提交
  2. 08 8月, 2016 1 次提交
  3. 03 8月, 2016 1 次提交
  4. 02 8月, 2016 1 次提交
  5. 06 7月, 2016 3 次提交
  6. 01 3月, 2014 1 次提交
    • A
      ARM: clps711x: Remove EP72XX_ROM_BOOT option · 32c6c01b
      Alexander Shiyan 提交于
      CLPS711X CPUs have 128 bytes of on-chip Boot ROM with an
      instruction sequence that configure UART1 to receive up to
      2 Kbytes of serial data which is then placed in the on-chip
      SRAM. Once the download is complete, the program counter
      jumps to SRAM to begin executed the downloaded data.
      The purpose of this mode is to allow the downloaded code to
      facilitate programming of FLASH or other ROM device. Selection
      of the internal Boot ROM is accomplished at power-on-reset time.
      No reason to keep this special (develop only) mode in the kernel.
      This patch removes EP72XX_ROM_BOOT kernel symbol.
      Signed-off-by: NAlexander Shiyan <shc_work@mail.ru>
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      32c6c01b
  7. 14 8月, 2013 1 次提交
  8. 12 6月, 2013 1 次提交
  9. 21 11月, 2012 1 次提交
  10. 14 10月, 2012 1 次提交
    • R
      ARM: config: sort select statements alphanumerically · b1b3f49c
      Russell King 提交于
      As suggested by Andrew Morton:
      
        This is a pet peeve of mine.  Any time there's a long list of items
        (header file inclusions, kconfig entries, array initalisers, etc) and
        someone wants to add a new item, they *always* go and stick it at the
        end of the list.
      
        Guys, don't do this.  Either put the new item into a randomly-chosen
        position or, probably better, alphanumerically sort the list.
      
      lets sort all our select statements alphanumerically.  This commit was
      created by the following perl:
      
      while (<>) {
      	while (/\\\s*$/) {
      		$_ .= <>;
      	}
      	undef %selects if /^\s*config\s+/;
      	if (/^\s+select\s+(\w+).*/) {
      		if (defined($selects{$1})) {
      			if ($selects{$1} eq $_) {
      				print STDERR "Warning: removing duplicated $1 entry\n";
      			} else {
      				print STDERR "Error: $1 differently selected\n".
      					"\tOld: $selects{$1}\n".
      					"\tNew: $_\n";
      				exit 1;
      			}
      		}
      		$selects{$1} = $_;
      		next;
      	}
      	if (%selects and (/^\s*$/ or /^\s+help/ or /^\s+---help---/ or
      			  /^endif/ or /^endchoice/)) {
      		foreach $k (sort (keys %selects)) {
      			print "$selects{$k}";
      		}
      		undef %selects;
      	}
      	print;
      }
      if (%selects) {
      	foreach $k (sort (keys %selects)) {
      		print "$selects{$k}";
      	}
      }
      
      It found two duplicates:
      
      Warning: removing duplicated S5P_SETUP_MIPIPHY entry
      Warning: removing duplicated HARDIRQS_SW_RESEND entry
      
      and they are identical duplicates, hence the shrinkage in the diffstat
      of two lines.
      
      We have four testers reporting success of this change (Tony, Stephen,
      Linus and Sekhar.)
      Acked-by: NJason Cooper <jason@lakedaemon.net>
      Acked-by: NTony Lindgren <tony@atomide.com>
      Acked-by: NStephen Warren <swarren@nvidia.com>
      Acked-by: NLinus Walleij <linus.walleij@linaro.org>
      Acked-by: NSekhar Nori <nsekhar@ti.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      b1b3f49c
  11. 29 9月, 2012 1 次提交
  12. 14 5月, 2012 1 次提交
  13. 16 7月, 2010 1 次提交
  14. 19 4月, 2008 1 次提交
  15. 09 2月, 2006 1 次提交
  16. 05 11月, 2005 1 次提交
  17. 28 10月, 2005 1 次提交
  18. 26 6月, 2005 1 次提交
  19. 05 5月, 2005 1 次提交
  20. 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