1. 12 4月, 2019 1 次提交
    • R
      mips: add initial support for qca956x referenced board · 61290fb5
      Rosy Song 提交于
      QCA9563 is CPU used on AP152 board :
      
          Clock speed : 750 MHz ,
          Arch :  Mips 74Kc,
          Eth : SGMII interface,
          MIMO config : 3 * 3 450M,
          2 * USB 2.0,
      Signed-off-by: NRosy Song <rosysong@rosinson.com>
      
      Changes for v2:
         - coding style cleanup
         - remove ununsed flash chip in defconfig
         - enable automatic icache / dcache size in defconfig
      
      Changes for v3:
         - add detailed information for qca956x in commit message
      
      Changes for v4:
         - remove pre-configured network settings in ap152.h
      
      Changes for v5:
         - coding style cleanup
      61290fb5
  2. 26 3月, 2019 1 次提交
  3. 07 5月, 2018 1 次提交
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      83d290c5
  4. 09 4月, 2018 1 次提交
  5. 24 2月, 2018 1 次提交
  6. 06 11月, 2017 1 次提交
  7. 04 9月, 2017 3 次提交
  8. 15 8月, 2017 1 次提交
  9. 26 7月, 2017 1 次提交
  10. 25 7月, 2017 1 次提交
  11. 23 5月, 2017 1 次提交
  12. 20 3月, 2017 1 次提交
  13. 13 2月, 2017 1 次提交
    • M
      flash: complete CONFIG_SYS_NO_FLASH move with renaming · e856bdcf
      Masahiro Yamada 提交于
      We repeated partial moves for CONFIG_SYS_NO_FLASH, but this is
      not completed. Finish this work by the tool.
      
      During this move, let's rename it to CONFIG_MTD_NOR_FLASH.
      Actually, we have more instances of "#ifndef CONFIG_SYS_NO_FLASH"
      than those of "#ifdef CONFIG_SYS_NO_FLASH".  Flipping the logic will
      make the code more readable.  Besides, negative meaning symbols do
      not fit in obj-$(CONFIG_...) style Makefiles.
      
      This commit was created as follows:
      
      [1] Edit "default n" to "default y" in the config entry in
          common/Kconfig.
      
      [2] Run "tools/moveconfig.py -y -r HEAD SYS_NO_FLASH"
      
      [3] Rename the instances in defconfigs by the following:
        find . -path './configs/*_defconfig' | xargs sed -i \
        -e '/CONFIG_SYS_NO_FLASH=y/d' \
        -e 's/# CONFIG_SYS_NO_FLASH is not set/CONFIG_MTD_NOR_FLASH=y/'
      
      [4] Change the conditionals by the following:
        find . -name '*.[ch]' | xargs sed -i \
        -e 's/ifndef CONFIG_SYS_NO_FLASH/ifdef CONFIG_MTD_NOR_FLASH/' \
        -e 's/ifdef CONFIG_SYS_NO_FLASH/ifndef CONFIG_MTD_NOR_FLASH/' \
        -e 's/!defined(CONFIG_SYS_NO_FLASH)/defined(CONFIG_MTD_NOR_FLASH)/' \
        -e 's/defined(CONFIG_SYS_NO_FLASH)/!defined(CONFIG_MTD_NOR_FLASH)/'
      
      [5] Modify the following manually
        - Rename the rest of instances
        - Remove the description from README
        - Create the new Kconfig entry in drivers/mtd/Kconfig
        - Remove the old Kconfig entry from common/Kconfig
        - Remove the garbage comments from include/configs/*.h
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      e856bdcf
  14. 26 1月, 2017 1 次提交
  15. 12 10月, 2016 2 次提交
  16. 10 6月, 2016 1 次提交
  17. 31 5月, 2016 2 次提交
  18. 26 5月, 2016 1 次提交
  19. 21 5月, 2016 2 次提交