blob: 8b6c30e8e9b02cdd0fa0da8e18be70c81aa3385d [file] [log] [blame]
Otavio Salvador3f4e5002013-01-11 03:19:12 +00001options {
2 driveTag = 0x00;
3 flags = 0x01;
4}
5
6sources {
Marek Vasute07153e2013-04-28 14:18:49 +00007 u_boot_spl="OBJTREE/spl/u-boot-spl.bin";
8 u_boot="OBJTREE/u-boot.bin";
Otavio Salvador3f4e5002013-01-11 03:19:12 +00009}
10
11section (0) {
12 load u_boot_spl > 0x0000;
13 load ivt (entry = 0x0014) > 0x8000;
14 call 0x8000;
15
16 load u_boot > 0x40000100;
17 call 0x40000100;
18}