The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / board / cubietech / cubieboard / post-build.sh
1 #!/bin/sh
2 # post-build.sh for CubieBoard
3 # 2013, Carlo Caione <carlo.caione@gmail.com>
4
5 BOARD_DIR="$(dirname $0)"
6 MKIMAGE=$HOST_DIR/usr/bin/mkimage
7 BOOT_CMD=$BOARD_DIR/boot.cmd
8 BOOT_CMD_H=$BINARIES_DIR/boot.scr
9
10 # U-Boot script
11 if [ -e $MKIMAGE -a -e $BOOT_CMD ];
12 then
13         $MKIMAGE -C none -A arm -T script -d $BOOT_CMD $BOOT_CMD_H
14 fi