diff options
author | Tom Rini <trini@konsulko.com> | 2018-08-07 21:36:20 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-08-07 21:36:20 -0400 |
commit | fc82e7684ba31a1a6ef721e7d750f37117906a70 (patch) | |
tree | b8ebeb9450162362a4f93194d44d3219f1b99a58 /board | |
parent | b1aad8dbe28415695b290726199681ced969c118 (diff) | |
parent | 972d8576d225c5fa8187ba09306fd439967ca7d8 (diff) | |
download | u-boot-fc82e7684ba31a1a6ef721e7d750f37117906a70.tar.gz |
Merge branch 'master' of git://git.denx.de/u-boot-samsung
Diffstat (limited to 'board')
-rw-r--r-- | board/samsung/common/bootscripts/autoboot.cmd | 6 | ||||
-rw-r--r-- | board/samsung/smdk5420/MAINTAINERS | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/board/samsung/common/bootscripts/autoboot.cmd b/board/samsung/common/bootscripts/autoboot.cmd index 1faed8ba0c..11c724c4e0 100644 --- a/board/samsung/common/bootscripts/autoboot.cmd +++ b/board/samsung/common/bootscripts/autoboot.cmd @@ -74,15 +74,15 @@ setenv boot_img " #### Routine: autoboot - choose proper boot path setenv autoboot " -if test -e mmc 0:${mmcbootpart} Image.itb; then +if test -e mmc ${mmcbootdev}:${mmcbootpart} Image.itb; then echo Found kernel image: Image.itb; run setboot_fit; run boot_img; -elif test -e mmc 0:${mmcbootpart} zImage; then +elif test -e mmc ${mmcbootdev}:${mmcbootpart} zImage; then echo Found kernel image: zImage; run setboot_zimg; run boot_img; -elif test -e mmc 0:${mmcbootpart} uImage; then +elif test -e mmc ${mmcbootdev}:${mmcbootpart} uImage; then echo Found kernel image: uImage; run setboot_uimg; run boot_img; diff --git a/board/samsung/smdk5420/MAINTAINERS b/board/samsung/smdk5420/MAINTAINERS index 590a1140b0..31c00360f2 100644 --- a/board/samsung/smdk5420/MAINTAINERS +++ b/board/samsung/smdk5420/MAINTAINERS @@ -11,6 +11,7 @@ F: configs/peach-pi_defconfig ODROID-XU3 BOARD M: Jaehoon Chung <jh80.chung@samsung.com> +M: Lukasz Majewski <lukma@denx.de> S: Maintained F: board/samsung/smdk5420/ F: include/configs/odroid_xu3.h |