blob: 6158f6833f9bf5f3c5cd5e1dbddd22b88ff7c18e [file] [log] [blame]
Simon Glass2e7d35d2014-02-26 15:59:21 -07001#!/bin/sh
2
Simon Glass22cc0692015-01-25 08:26:56 -07003die() {
4 echo $1
5 exit 1
6}
7
Simon Glass2e7d35d2014-02-26 15:59:21 -07008NUM_CPUS=$(cat /proc/cpuinfo |grep -c processor)
9dtc -I dts -O dtb test/dm/test.dts -o test/dm/test.dtb
Simon Glass22cc0692015-01-25 08:26:56 -070010make O=sandbox sandbox_config || die "Cannot configure U-Boot"
11make O=sandbox -s -j${NUM_CPUS} || die "Cannot build U-Boot"
Simon Glassebcab482014-10-13 23:42:10 -060012dd if=/dev/zero of=spi.bin bs=1M count=2
Simon Glasse00cb222015-03-25 12:23:05 -060013echo -n "this is a test" > testflash.bin
14dd if=/dev/zero bs=1M count=4 >>testflash.bin
Simon Glass2e7d35d2014-02-26 15:59:21 -070015./sandbox/u-boot -d test/dm/test.dtb -c "dm test"
Simon Glassebcab482014-10-13 23:42:10 -060016rm spi.bin
Simon Glasse00cb222015-03-25 12:23:05 -060017rm testflash.bin