Simon Glass
001d1885f0
sandbox: Improve debugging in initcall_run_list()
...
At present if one of the initcalls fails on sandbox the address printing
is not help, e.g.:
initcall sequence 0000557678967c80 failed at call 00005576709dfe1f (err=-96)
This is because U-Boot gets relocated high into memory and the relocation
offset (gd->reloc_off) does not work correctly for sandbox.
Add support for finding the base address of the text region (at least on
Linux) and use that to set the relocation offset. This makes the output
better:
initcall sequence 0000560775957c80 failed at call 0000000000048134 (err=-96)
Then you use can use grep to see which init call failed, e.g.:
$ grep 0000000000048134 u-boot.map
stdio_add_devices
Of course another option is to run it with a debugger such as gdb:
$ gdb u-boot
...
(gdb) br initcall.h:41
Breakpoint 1 at 0x4db9d: initcall.h:41. (2 locations)
Note that two locations are reported, since this function is used in both
board_init_f() and board_init_r().
(gdb) r
Starting program: /tmp/b/sandbox/u-boot
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
U-Boot 2018.09-00264-ge0c2ba9814-dirty (Sep 22 2018 - 12:21:46 -0600)
DRAM: 128 MiB
MMC:
Breakpoint 1, initcall_run_list (init_sequence=0x5555559619e0 <init_sequence_f>)
at /scratch/sglass/cosarm/src/third_party/u-boot/files/include/initcall.h:41
41 printf("initcall sequence %p failed at call %p (err=%d)\n",
(gdb) print *init_fnc_ptr
$1 = (const init_fnc_t) 0x55555559c114 <stdio_add_devices>
(gdb)
Signed-off-by: Simon Glass <sjg@chromium.org >
2019-04-23 20:26:43 -06:00
..
2018-05-07 09:34:12 -04:00
2018-12-10 07:21:21 +01:00
2018-05-07 09:34:12 -04:00
2019-04-21 19:00:04 -04:00
2019-04-11 20:10:48 -06:00
2019-04-14 22:32:32 +05:30
2019-04-12 08:05:50 -04:00
2018-05-07 09:34:12 -04:00
2019-01-17 13:16:49 -08:00
2018-09-20 20:11:01 +05:30
2019-04-14 00:03:06 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-19 08:59:26 +02:00
2018-05-30 11:59:21 +02:00
2019-04-12 16:09:13 +02:00
2019-03-11 15:53:19 +09:00
2018-05-07 09:34:12 -04:00
2018-10-07 10:47:38 -04:00
2019-02-09 07:50:53 -05:00
2018-12-08 20:18:44 -05:00
2019-04-21 10:26:52 +02:00
2018-05-07 09:34:12 -04:00
2018-11-27 21:06:53 +05:30
2018-05-07 09:34:12 -04:00
2018-11-20 12:35:25 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-20 17:12:25 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 10:24:31 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-13 16:32:49 -07:00
2018-05-07 09:34:12 -04:00
2018-10-07 11:07:26 -04:00
2018-08-11 08:09:39 +02:00
2018-05-07 09:34:12 -04:00
2018-12-07 22:24:33 +05:30
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-10-09 04:40:27 -06:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-11-14 09:16:27 -08:00
2018-11-26 08:25:32 -05:00
2018-05-07 09:34:12 -04:00
2018-09-29 11:49:35 -06:00
2018-05-07 09:34:12 -04:00
2018-12-10 10:04:44 +01:00
2019-02-13 09:40:06 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-23 21:55:29 +02:00
2018-12-31 09:42:41 +08:00
2019-02-13 09:40:05 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-29 11:49:35 -06:00
2018-05-07 09:34:12 -04:00
2019-03-22 08:35:50 -04:00
2018-05-07 09:34:12 -04:00
2019-01-15 22:05:34 -05:00
2018-09-10 20:48:16 -04:00
2019-04-09 18:19:10 +02:00
2019-02-13 09:40:05 +01:00
2018-04-28 10:42:35 -04:00
2018-05-07 09:34:12 -04:00
2018-05-14 21:28:38 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-06-13 13:54:15 -05:00
2018-09-23 21:55:29 +02:00
2018-09-23 21:55:29 +02:00
2019-04-12 08:05:54 -04:00
2018-12-18 09:56:26 +08:00
2018-05-07 09:34:12 -04:00
2018-11-20 19:14:22 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-01-30 21:22:53 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-06-29 11:30:39 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-29 11:49:35 -06:00
2018-12-07 08:13:45 -05:00
2018-12-07 08:13:45 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-29 11:00:59 -04:00
2018-05-07 09:34:12 -04:00
2019-01-31 09:35:01 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-07 16:31:45 +01:00
2018-05-07 09:34:12 -04:00
2019-02-18 13:00:54 +01:00
2018-10-09 04:40:27 -06:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-04-07 14:17:06 +02:00
2018-05-10 20:38:35 -04:00
2019-04-12 22:00:42 +02:00
2018-12-02 21:59:37 +01:00
2019-04-12 22:00:42 +02:00
2018-08-10 13:50:15 -04:00
2018-05-07 09:34:12 -04:00
2019-01-24 11:35:28 -06:00
2018-08-17 13:03:59 -04:00
2019-01-24 11:35:28 -06:00
2019-01-17 13:16:31 -08:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-07-26 14:08:22 -05:00
2019-04-09 20:03:30 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-30 11:59:21 +02:00
2018-05-30 11:59:21 +02:00
2018-09-23 21:55:30 +02:00
2018-05-30 11:59:21 +02:00
2018-05-30 11:59:21 +02:00
2018-05-07 09:34:12 -04:00
2018-07-25 08:47:52 +09:00
2019-04-11 20:10:50 -06:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-04-16 11:51:33 +02:00
2018-05-07 09:34:12 -04:00
2019-01-15 15:28:54 -05:00
2019-04-09 20:04:03 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-01-26 08:13:56 -05:00
2018-05-07 09:34:12 -04:00
2018-12-06 14:37:19 -08:00
2018-05-07 09:34:12 -04:00
2018-10-22 12:59:02 +02:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-18 08:27:26 +02:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-03-03 22:01:04 +05:30
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-10-29 13:13:05 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-08-28 11:00:18 +02:00
2018-05-07 09:34:12 -04:00
2018-11-26 08:25:37 -05:00
2018-05-07 09:34:12 -04:00
2019-02-20 15:27:09 +08:00
2018-06-13 07:49:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-06 23:26:32 -05:00
2018-05-07 09:34:12 -04:00
2019-04-11 15:21:33 +02:00
2019-02-09 12:50:22 -07:00
2018-12-05 06:01:35 -07:00
2018-05-07 09:34:12 -04:00
2018-08-20 07:21:29 -04:00
2018-05-30 11:59:21 +02:00
2019-01-01 14:12:18 +01:00
2018-10-22 13:01:27 +02:00
2018-08-06 14:28:23 +02:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-01-01 14:12:18 +01:00
2018-11-14 09:16:27 -08:00
2019-04-23 20:26:43 -06:00
2018-05-07 09:34:12 -04:00
2018-12-05 06:01:35 -07:00
2018-05-07 09:34:12 -04:00
2018-06-18 14:02:04 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-04-06 17:04:33 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-08-10 10:27:32 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-07-23 14:33:21 -04:00
2019-02-02 08:19:17 -05:00
2019-02-20 15:21:44 +08:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-11 08:32:55 -04:00
2018-11-29 09:30:05 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-01-31 09:35:01 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-10-24 14:45:36 -05:00
2018-11-20 19:14:22 -07:00
2018-05-07 09:34:12 -04:00
2019-02-16 18:12:17 +01:00
2018-05-07 09:34:12 -04:00
2018-09-18 00:01:18 -06:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-10-02 22:12:32 +05:30
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-04-12 08:05:52 -04:00
2018-11-05 10:41:56 -06:00
2018-12-05 06:08:35 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-04-23 20:26:43 -06:00
2018-12-10 06:17:30 +01:00
2018-10-09 04:40:27 -06:00
2018-10-09 04:40:27 -06:00
2019-02-01 09:14:21 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-02-20 15:27:08 +08:00
2018-05-07 09:34:12 -04:00
2019-02-20 15:25:28 +08:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-10 16:34:21 -07:00
2019-03-22 12:15:20 -04:00
2018-05-07 09:34:12 -04:00
2018-06-14 10:52:14 +02:00
2018-10-10 12:28:55 -05:00
2018-05-28 16:40:43 +05:30
2019-01-24 11:35:26 -06:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-11 08:32:55 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-01-14 17:47:13 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-11 08:32:55 -04:00
2018-09-11 08:32:55 -04:00
2019-01-18 22:19:09 +05:30
2018-05-07 09:34:12 -04:00
2018-12-05 06:06:44 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-10-07 11:04:01 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-11 10:22:26 +02:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-01-14 17:47:13 -07:00
2018-05-07 09:34:12 -04:00
2018-06-03 15:27:21 +02:00
2018-07-19 16:31:37 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-02-20 15:27:08 +08:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-03-25 17:36:59 -04:00
2018-09-20 20:10:49 +05:30
2019-04-12 11:54:50 +05:30
2019-02-01 16:59:12 +01:00
2019-02-19 08:55:43 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-07-20 15:55:05 -04:00
2018-05-07 09:34:12 -04:00
2018-10-09 04:40:27 -06:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-07 16:31:45 +01:00
2018-10-09 04:40:27 -06:00
2018-05-07 09:34:12 -04:00
2018-12-15 11:49:19 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-05 06:01:34 -07:00
2018-11-29 09:30:06 -07:00
2018-12-05 06:01:34 -07:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-12-10 06:17:30 +01:00
2018-12-10 06:17:30 +01:00
2018-09-28 20:22:32 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 10:24:31 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-10-10 12:28:52 -05:00
2018-05-07 09:34:12 -04:00
2018-11-26 21:19:03 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-28 18:25:39 +02:00
2018-05-07 09:34:12 -04:00
2018-03-06 10:22:37 +01:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-09-28 18:26:32 +02:00
2019-04-14 14:18:47 +02:00
2018-05-07 09:34:12 -04:00
2018-11-14 09:16:27 -08:00
2018-11-14 09:16:27 -08:00
2018-11-14 09:16:27 -08:00
2018-06-13 13:54:16 -05:00
2018-05-07 09:34:12 -04:00
2018-12-31 08:08:51 -05:00
2018-09-28 20:22:35 -04:00
2018-11-16 16:51:55 -05:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2019-04-09 09:28:50 +03:00
2018-05-07 09:34:12 -04:00
2018-05-07 09:34:12 -04:00
2018-06-01 11:37:31 +02:00
2018-05-07 09:34:12 -04:00
2018-07-19 10:49:54 +02:00
2018-05-11 11:13:51 +02:00
2018-06-01 11:37:31 +02:00
2018-07-19 10:49:54 +02:00