aboutsummaryrefslogtreecommitdiff
path: root/linaro_image_tools/media_create/tests/test_media_create.py
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2013-03-26 09:59:38 +0100
committerMilo Casagrande <milo@ubuntu.com>2013-03-26 09:59:38 +0100
commitc217c6faa3bb2d876c38a49a175df39fdb6e29f4 (patch)
tree425bde87529a35b37485aed6a21942c4ae0bf616 /linaro_image_tools/media_create/tests/test_media_create.py
parent873a852567f6e05b1561db3cdaa0a5cead6ca28a (diff)
Fixed regression when using actual dtb file name, not the general one.
Diffstat (limited to 'linaro_image_tools/media_create/tests/test_media_create.py')
-rw-r--r--linaro_image_tools/media_create/tests/test_media_create.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/linaro_image_tools/media_create/tests/test_media_create.py b/linaro_image_tools/media_create/tests/test_media_create.py
index 03b8f82..d14464c 100644
--- a/linaro_image_tools/media_create/tests/test_media_create.py
+++ b/linaro_image_tools/media_create/tests/test_media_create.py
@@ -2002,7 +2002,7 @@ class TestGetBootCmd(TestCase):
'root=UUID=deadbeef rootwait ro',
'bootcmd': 'fatload mmc 0:2 0x90000000 uImage; '
'fatload mmc 0:2 0x92000000 uInitrd; '
- 'fatload mmc 0:2 0x91ff0000 mx51.dtb; '
+ 'fatload mmc 0:2 0x91ff0000 board.dtb; '
'bootm 0x90000000 0x92000000 0x91ff0000',
'fdt_high': '0xffffffff',
'initrd_high': '0xffffffff'}
@@ -2126,7 +2126,7 @@ class TestGetBootCmd(TestCase):
'mem=456M@0x80000000 mem=512M@0xA0000000',
'bootcmd': 'fatload mmc 0:1 0x80200000 uImage; '
'fatload mmc 0:1 0x81600000 uInitrd; '
- 'fatload mmc 0:1 0x815f0000 panda.dtb; '
+ 'fatload mmc 0:1 0x815f0000 board.dtb; '
'bootm 0x80200000 0x81600000 0x815f0000',
'fdt_high': '0xffffffff',
'initrd_high': '0xffffffff'}
@@ -2149,7 +2149,7 @@ class TestGetBootCmd(TestCase):
'omapfb.mode=dvi:1280x720MR-16@60 mpurate=${mpurate}',
'bootcmd': 'fatload mmc 0:1 0x80000000 uImage; '
'fatload mmc 0:1 0x81600000 uInitrd; '
- 'fatload mmc 0:1 0x815f0000 beagle.dtb; '
+ 'fatload mmc 0:1 0x815f0000 board.dtb; '
'bootm 0x80000000 0x81600000 0x815f0000',
'fdt_high': '0xffffffff',
'initrd_high': '0xffffffff'}
@@ -2172,7 +2172,7 @@ class TestGetBootCmd(TestCase):
'omapfb.mode=dvi:1280x720MR-16@60 mpurate=${mpurate}',
'bootcmd': 'fatload mmc 0:1 0x80000000 uImage; '
'fatload mmc 0:1 0x81600000 uInitrd; '
- 'fatload mmc 0:1 0x815f0000 igep.dtb; '
+ 'fatload mmc 0:1 0x815f0000 board.dtb; '
'bootm 0x80000000 0x81600000 0x815f0000',
'fdt_high': '0xffffffff',
'initrd_high': '0xffffffff'}
@@ -2196,7 +2196,7 @@ class TestGetBootCmd(TestCase):
'omapfb.mode=dvi:${dvimode}',
'bootcmd': 'fatload mmc 0:1 0x80000000 uImage; '
'fatload mmc 0:1 0x81600000 uInitrd; '
- 'fatload mmc 0:1 0x815f0000 overo.dtb; '
+ 'fatload mmc 0:1 0x815f0000 board.dtb; '
'bootm 0x80000000 0x81600000 0x815f0000',
'fdt_high': '0xffffffff',
'initrd_high': '0xffffffff'}