1. 13 1月, 2015 1 次提交
    • B
      x86: Make chromebook_link the default board for coreboot · ade8127a
      Bin Meng 提交于
      Change SYS_CONFIG_NAME and DEFAULT_DEVICE_TREE to chromebook_link
      which is currently the only real board officially supported to run
      U-Boot loaded by coreboot.
      
      Note the symbolic link file chromebook_link.dts is deleted and
      link.dts is renamed to chromebook_link.dts.
      
      To avoid multiple definition of video_hw_init, the CONFIG_VIDEO_X86
      define needs to be moved to arch/x86/cpu/ivybridge/Kconfig.
      Signed-off-by: NBin Meng <bmeng.cn@gmail.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      ade8127a
  2. 25 9月, 2014 1 次提交
  3. 30 7月, 2014 1 次提交
    • M
      kconfig: add board Kconfig and defconfig files · dd84058d
      Masahiro Yamada 提交于
      This commit adds:
       - arch/${ARCH}/Kconfig
          provide a menu to select target boards
       - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
          set CONFIG macros to the appropriate values for each board
       - configs/${TARGET_BOARD}_defconfig
          default setting of each board
      
      (This commit was automatically generated by a conversion script
      based on boards.cfg)
      
      In Linux Kernel, defconfig files are located under
      arch/${ARCH}/configs/ directory.
      It works in Linux Kernel since ARCH is always given from the
      command line for cross compile.
      
      But in U-Boot, ARCH is not given from the command line.
      Which means we cannot know ARCH until the board configuration is done.
      That is why all the "*_defconfig" files should be gathered into a
      single directory ./configs/.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      dd84058d