]> git.ipfire.org Git - thirdparty/u-boot.git/blob - board/mqmaker/miqi_rk3288/miqi-rk3288.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / board / mqmaker / miqi_rk3288 / miqi-rk3288.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
4 */
5
6 #include <common.h>
7 #include <spl.h>
8
9 void board_boot_order(u32 *spl_boot_list)
10 {
11 /* eMMC prior to sdcard. */
12 spl_boot_list[0] = BOOT_DEVICE_MMC2;
13 spl_boot_list[1] = BOOT_DEVICE_MMC1;
14 }