Skip to content
Snippets Groups Projects
  1. Aug 20, 2016
  2. Aug 15, 2016
  3. Jul 15, 2016
  4. Jun 06, 2016
  5. May 30, 2016
  6. May 24, 2016
  7. May 23, 2016
  8. May 02, 2016
  9. Mar 17, 2016
  10. Feb 08, 2016
  11. Feb 06, 2016
  12. Feb 02, 2016
  13. Jan 30, 2016
  14. Jan 25, 2016
    • Tom Rini's avatar
      kbuild: Add clang detection · 29c4d281
      Tom Rini authored
      
      Adapted from:
      
      >From 5631d9c429857194bd55d7bcd8fa5bdd1a9899a3 Mon Sep 17 00:00:00 2001
      From: Michal Marek <mmarek@suse.com>
      Date: Wed, 19 Aug 2015 17:36:41 +0200
      Subject: [PATCH 1/1] kbuild: Fix clang detection
      
      We cannot detect clang before including the arch Makefile, because that
      can set the default cross compiler. We also cannot detect clang after
      including the arch Makefile, because powerpc wants to know about clang.
      Solve this by using an deferred variable. This costs us a few shell
      invocations, but this is only a constant number.
      
      Reported-by: default avatarBehan Webster <behanw@converseincode.com>
      Reported-by: default avatarAnton Blanchard <anton@samba.org>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      
      in the Linux kernel.
      
      This will allow us to make better decisions about when to run tests
      later on for gcc features.
      
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      29c4d281
    • Simon Glass's avatar
      Move all command code into its own directory · 72a8cf8d
      Simon Glass authored
      
      There are a lot of unrelated files in common, including all of the commands.
      Moving them into their own directory makes them easier to find and is more
      logical.
      
      Some commands include non-command code, such as cmd_scsi.c. This should be
      sorted out at some point so that the function can be enabled with or without
      the associated command.
      
      Unfortunately, with m68k I get this error:
      
      m68k:  +   M5329AFEE
      +arch/m68k/cpu/mcf532x/start.o: In function `_start':
      +arch/m68k/cpu/mcf532x/start.S:159:(.text+0x452): relocation truncated to fit: R_68K_PC16 against symbol `board_init_f' defined in .text.board_init_f section in common/built-in.o
      
      I hope someone can shed some light on what this means. I hope it isn't
      depending on the position of code in the image.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
      Reviewed-by: default avatarHeiko Schocher <hs@denx.de>
      Acked-by: default avatarStefan Roese <sr@denx.de>
      Acked-by: default avatarPrzemyslaw Marczak <p.marczak@samsung.com>
      72a8cf8d
  15. Jan 19, 2016
  16. Jan 15, 2016
  17. Jan 08, 2016
  18. Jan 04, 2016
    • Heiko Schocher's avatar
      checkpatch: fix left brace warning · d8a1a304
      Heiko Schocher authored
      
      using checkpatch with Perl 5.22.0 generates a warning,
      this is fixed in linux through commit:
      
      commit 4e5d56bdf892e18832a6540b63ebf709966bce2a
      Author: Eddie Kovsky <ewk@edkovsky.org>
      Date:   Wed Sep 9 15:37:52 2015 -0700
      
      checkpatch: fix left brace warning
      
      Using checkpatch.pl with Perl 5.22.0 generates the following warning:
      
      Unescaped left brace in regex is deprecated, passed through in regex;
      
      This patch fixes the warnings by escaping occurrences of the left brace
      inside the regular expression.
      
      Adapt it for U-Boot.
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      d8a1a304
  19. Nov 19, 2015
  20. Nov 12, 2015
  21. Nov 10, 2015
    • Tom Rini's avatar
      Various Makefiles: Add SPDX-License-Identifier tags · da58dec8
      Tom Rini authored
      
      After consulting with some of the SPDX team, the conclusion is that
      Makefiles are worth adding SPDX-License-Identifier tags too, and most of
      ours have one.  This adds tags to ones that lack them and converts a few
      that had full (or in one case, very partial) license blobs into the
      equivalent tag.
      
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      da58dec8
  22. Nov 04, 2015
  23. Oct 24, 2015
    • Simon Glass's avatar
      Move board_init_f_mem() into a common location · af6bbd4d
      Simon Glass authored
      
      This function will be used by both SPL and U-Boot proper. So move it into
      a common place. Also change the #ifdef so that the early malloc() area is
      not set up in SPL if CONFIG_SYS_SPL_MALLOC_START is defined. In that case
      it would never actually be used, and just chews up stack space.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      af6bbd4d
  24. Sep 15, 2015
  25. Aug 26, 2015
    • Saket Sinha's avatar
      x86: Generate a valid ACPI table · 867bcb63
      Saket Sinha authored
      
      Implement write_acpi_table() to create a minimal working ACPI table.
      This includes writing FACS, XSDT, RSDP, FADT, MCFG, MADT, DSDT & SSDT
      ACPI table entries.
      
      Use a Kconfig option GENERATE_ACPI_TABLE to tell U-Boot whether we need
      actually write the APCI table just like we did for PIRQ routing, MP table
      and SFI tables. With ACPI table existence, linux kernel gets control of
      power management, thermal management, configuration management and
      monitoring in hardware.
      
      Signed-off-by: default avatarSaket Sinha <saket.sinha89@gmail.com>
      Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
      Tidied up whitespace and aligned some tabs:
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      867bcb63
  26. Aug 18, 2015
Loading