Merge git://git.denx.de/u-boot-dm
authorTom Rini <trini@konsulko.com>
Sun, 30 Sep 2018 22:16:51 +0000 (18:16 -0400)
committerTom Rini <trini@konsulko.com>
Sun, 30 Sep 2018 22:16:51 +0000 (18:16 -0400)
14 files changed:
1  2 
arch/sandbox/dts/test.dts
configs/sandbox64_defconfig
configs/sandbox_defconfig
configs/sandbox_flattree_defconfig
configs/sandbox_noblk_defconfig
configs/sandbox_spl_defconfig
drivers/Kconfig
drivers/Makefile
include/dm/uclass-id.h
test/dm/Makefile
tools/binman/README
tools/binman/README.entries
tools/binman/bsection.py
tools/binman/ftest.py

index cfa47bcd0dec792101179b43c6924ca00c694de9,42ceeb994e8b6144bb16975db47b1a4c7d080f33..491f889f3b9cd04c4c8f5f630652311805103163
                };
        };
  
 +      osd {
 +              compatible = "sandbox,sandbox_osd";
 +      };
++
+       board {
+               compatible = "sandbox,board_sandbox";
+       };
  };
  
  #include "sandbox_pmic.dtsi"
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc drivers/Kconfig
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 924701a76b2369b03a961327bc488dbed8b8a6dd,abf02b62e813e3d7e74842f630f652edb5c0887e..57725c928e70afda6f4b3cb6cad19cefb20a5753
@@@ -39,9 -41,10 +41,11 @@@ U_BOOT_SPL_DTB_DATA   = 'spldtb
  U_BOOT_TPL_DTB_DATA   = 'tpldtb'
  X86_START16_DATA      = 'start16'
  X86_START16_SPL_DATA  = 'start16spl'
+ X86_START16_TPL_DATA  = 'start16tpl'
 +PPC_MPC85XX_BR_DATA   = 'ppcmpc85xxbr'
  U_BOOT_NODTB_DATA     = 'nodtb with microcode pointer somewhere in here'
  U_BOOT_SPL_NODTB_DATA = 'splnodtb with microcode pointer somewhere in here'
+ U_BOOT_TPL_NODTB_DATA = 'tplnodtb with microcode pointer somewhere in here'
  FSP_DATA              = 'fsp'
  CMC_DATA              = 'cmc'
  VBT_DATA              = 'vbt'
@@@ -91,9 -97,10 +98,11 @@@ class TestFunctional(unittest.TestCase)
          TestFunctional._MakeInputFile('vga.bin', VGA_DATA)
          self._ResetDtbs()
          TestFunctional._MakeInputFile('u-boot-x86-16bit.bin', X86_START16_DATA)
 +        TestFunctional._MakeInputFile('u-boot-br.bin', PPC_MPC85XX_BR_DATA)
          TestFunctional._MakeInputFile('spl/u-boot-x86-16bit-spl.bin',
                                        X86_START16_SPL_DATA)
+         TestFunctional._MakeInputFile('tpl/u-boot-x86-16bit-tpl.bin',
+                                       X86_START16_TPL_DATA)
          TestFunctional._MakeInputFile('u-boot-nodtb.bin', U_BOOT_NODTB_DATA)
          TestFunctional._MakeInputFile('spl/u-boot-spl-nodtb.bin',
                                        U_BOOT_SPL_NODTB_DATA)