Skip to content
Snippets Groups Projects
  1. Aug 21, 2014
    • Masahiro Yamada's avatar
      omap: remove omap5912osk board support · 62d636aa
      Masahiro Yamada authored
      
      Emails to the board maintainer
      "Rishi Bhattacharya <rishi@ti.com>"
      have been bouncing.
      
      Tom suggested to remove this board.
      
      Remove also omap1510_udc.c because this is the last board
      to enable it.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Suggested-by: default avatarTom Rini <trini@ti.com>
      62d636aa
    • Masahiro Yamada's avatar
      scripts: objdiff: sync with Linux 3.16 · 9b586031
      Masahiro Yamada authored
      
      Import scripts/objdiff improvements from Linux v3.16, which
      consists of 7 commits written by me.
      
        commit 7fa0e6db3cedc9b70d68a4170f1352e2b1aa0f90
        scripts: objdiff: support directories for the augument of record command
      
        commit 8ac28bee76eec006aac5ba5c418878a607d53a9b
        scripts: objdiff: fix a comment
      
        commit 8b5d0f20d64f00ffd5685879f8eb3659379f5aaa
        scripts: objdiff: change the extension of disassembly from .o to .dis
      
        commit 18165efa8203a34d82f60a1831ea290e7304c654
        scripts: objdiff: improve path flexibility for record command
      
        commit 1ecc8e489abfdaa6d8d1689f7ff62fdf1adda30c
        scripts: objdiff: remove unnecessary code
      
        commit 5ab370e91af70d5f1b1dbaec78798a2ff236a2d5
        scripts: objdiff: direct error messages to stderr
      
        commit fd6e12423311697860f30d10398a0f9eb91977d2
        scripts: objdiff: get the path to .tmp_objdiff more simply
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      9b586031
    • Masahiro Yamada's avatar
      kbuild: sync mixed targets handling with Linux 3.16 · e7734404
      Masahiro Yamada authored
      
      "make %_config all" was supported for the first time in U-Boot:
        commit 53bca5ab
        kbuild: support simultaneous board configuration and "make all"
      
      Surprisingly it had not been working in Linux Kernel for a long time.
      
      So I sent back the patch to the Linux Kbuild community and it was
      accepted with a little code improvement, at commit 9319f453.
      
      Now, you can do "make defconfig all" or "make %_defconfig all"
      in Linux too.
      
      This commit updates some scripts to fill the code-diff
      between Linux and U-Boot.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      e7734404
    • Masahiro Yamada's avatar
      kbuild: move extra gcc checks to scripts/Makefile.extrawarn · 6419e144
      Masahiro Yamada authored
      
      This commit was imported from Linux Kernel:
      commit a86fe353 written by me.
      
      W=... provides extra gcc checks.
      
      Having such code in scripts/Makefile.build results in the same flags
      being added to KBUILD_CFLAGS multiple times becuase
      scripts/Makefile.build is invoked every time Kbuild descends into
      the subdirectories.
      
      Since the top Makefile is already too cluttered, this commit moves
      all of extra gcc check stuff to a new file scripts/Makefile.extrawarn,
      which is included from the top Makefile.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      6419e144
    • Masahiro Yamada's avatar
      drivers: net: remove dead drivers · 368b4d2b
      Masahiro Yamada authored
      
      The following configs are not defined at all:
      
       - CONFIG_INCA_IP_SWITCH
       - CONFIG_PBL2800_ETHER
       - CONFIG_PHY_ICPLUS
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      368b4d2b
    • Masahiro Yamada's avatar
      tools, scripts: refactor error-out statements of Python scripts · 31e2141d
      Masahiro Yamada authored
      
      In Python, sys.exit() function can also take an object other
      than an integer.
      
      If an integer is given to the argument, Python exits with the return
      code of it.  If a non-integer argument is given, Python outputs it
      to stderr and exits with the return code of 1.
      
      That means,
      
          print >> sys.stderr, "Blah Blah"
          sys.exit(1)
      
      is equivalent to
      
          sys.exit("Blah Blah")
      
      The latter is a useful shorthand.
      
      Note:
      Some error messages in Buildman and Patman were output to stdout.
      But they should go to stderr.  They are also fixed by this commit.
      This is a nice side effect.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      31e2141d
    • Masahiro Yamada's avatar
  2. Aug 20, 2014
  3. Aug 13, 2014
  4. Aug 12, 2014
  5. Aug 11, 2014
Loading