Re: [U-Boot] [PATCH v3 3/8] cmd: efishell: add drivers command

2018-12-25 Thread Heinrich Schuchardt
On 12/25/18 8:22 AM, AKASHI Takahiro wrote: > On Thu, Dec 20, 2018 at 08:51:34AM +0100, Heinrich Schuchardt wrote: >> On 12/18/18 6:05 AM, AKASHI Takahiro wrote: >>> "drivers" command prints all the uefi drivers on the system. >>> => efi drivers >>> Driver Name Image Path >>> ==

Re: [U-Boot] [PATCH v3 3/8] cmd: efishell: add drivers command

2018-12-24 Thread AKASHI Takahiro
On Thu, Dec 20, 2018 at 08:51:34AM +0100, Heinrich Schuchardt wrote: > On 12/18/18 6:05 AM, AKASHI Takahiro wrote: > > "drivers" command prints all the uefi drivers on the system. > > => efi drivers > > Driver Name Image Path > > > > (unknown)

Re: [U-Boot] [PATCH v3 3/8] cmd: efishell: add drivers command

2018-12-19 Thread Heinrich Schuchardt
On 12/18/18 6:05 AM, AKASHI Takahiro wrote: > "drivers" command prints all the uefi drivers on the system. > => efi drivers > Driver Name Image Path > > (unknown) +(not found) > guid: 18a031ab-b443-4d1a-a5c0-0c09261e9f71 > > Currently, no

[U-Boot] [PATCH v3 3/8] cmd: efishell: add drivers command

2018-12-17 Thread AKASHI Takahiro
"drivers" command prints all the uefi drivers on the system. => efi drivers Driver Name Image Path (unknown) +(not found) guid: 18a031ab-b443-4d1a-a5c0-0c09261e9f71 Currently, no useful information can be printed. Signed-off-by: AKASHI Ta