]> Git Repo - J-u-boot.git/blame - cmd/bootefi.c
efi_selftest: Clean up a few comments and messages
[J-u-boot.git] / cmd / bootefi.c
CommitLineData
f739fcd8 1// SPDX-License-Identifier: GPL-2.0+
b9939336
AG
2/*
3 * EFI application loader
4 *
5 * Copyright (c) 2016 Alexander Graf
b9939336
AG
6 */
7
d78e40d6 8#include <charset.h>
b9939336
AG
9#include <common.h>
10#include <command.h>
9d922450 11#include <dm.h>
b9939336 12#include <efi_loader.h>
d78e40d6 13#include <efi_selftest.h>
b9939336 14#include <errno.h>
b08c8c48
MY
15#include <linux/libfdt.h>
16#include <linux/libfdt_env.h>
354264b3 17#include <mapmem.h>
ad0c1a3d 18#include <memalign.h>
0d9d501f 19#include <asm/global_data.h>
e275458c 20#include <asm-generic/sections.h>
c3b11dea 21#include <asm-generic/unaligned.h>
e275458c 22#include <linux/linkage.h>
0d9d501f 23
dc500c36
MK
24#ifdef CONFIG_ARMV7_NONSEC
25#include <asm/armv7.h>
26#include <asm/secure.h>
27#endif
28
0d9d501f 29DECLARE_GLOBAL_DATA_PTR;
b9939336 30
fc225e60
HS
31#define OBJ_LIST_NOT_INITIALIZED 1
32
33static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
7cbc1241 34
95c5553e
RC
35static struct efi_device_path *bootefi_image_path;
36static struct efi_device_path *bootefi_device_path;
b9939336 37
7cbc1241 38/* Initialize and populate EFI object list */
fc225e60 39efi_status_t efi_init_obj_list(void)
7cbc1241 40{
fc225e60
HS
41 efi_status_t ret = EFI_SUCCESS;
42
098a6cdd 43 /* Initialize once only */
fc225e60
HS
44 if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
45 return efi_obj_list_initialized;
7cbc1241 46
05ef48a2 47 /* Initialize EFI driver uclass */
fc225e60
HS
48 ret = efi_driver_init();
49 if (ret != EFI_SUCCESS)
50 goto out;
05ef48a2 51
fc225e60
HS
52 ret = efi_console_register();
53 if (ret != EFI_SUCCESS)
54 goto out;
7cbc1241 55#ifdef CONFIG_PARTITIONS
fc225e60
HS
56 ret = efi_disk_register();
57 if (ret != EFI_SUCCESS)
58 goto out;
7cbc1241
HS
59#endif
60#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
fc225e60
HS
61 ret = efi_gop_register();
62 if (ret != EFI_SUCCESS)
63 goto out;
7cbc1241 64#endif
092f2f35 65#ifdef CONFIG_NET
fc225e60
HS
66 ret = efi_net_register();
67 if (ret != EFI_SUCCESS)
68 goto out;
7cbc1241 69#endif
86df34d4
BM
70#ifdef CONFIG_GENERATE_ACPI_TABLE
71 ret = efi_acpi_register();
72 if (ret != EFI_SUCCESS)
73 goto out;
74#endif
7cbc1241 75#ifdef CONFIG_GENERATE_SMBIOS_TABLE
fc225e60
HS
76 ret = efi_smbios_register();
77 if (ret != EFI_SUCCESS)
78 goto out;
7cbc1241 79#endif
fc225e60
HS
80 ret = efi_watchdog_register();
81 if (ret != EFI_SUCCESS)
82 goto out;
7cbc1241
HS
83
84 /* Initialize EFI runtime services */
fc225e60
HS
85 ret = efi_reset_system_init();
86 if (ret != EFI_SUCCESS)
87 goto out;
88 ret = efi_get_time_init();
89 if (ret != EFI_SUCCESS)
90 goto out;
91
92out:
93 efi_obj_list_initialized = ret;
94 return ret;
7cbc1241
HS
95}
96
c3b11dea
HS
97/*
98 * Allow unaligned memory access.
99 *
100 * This routine is overridden by architectures providing this feature.
101 */
102void __weak allow_unaligned(void)
103{
104}
105
d78e40d6
HS
106/*
107 * Set the load options of an image from an environment variable.
108 *
109 * @loaded_image_info: the image
110 * @env_var: name of the environment variable
111 */
112static void set_load_options(struct efi_loaded_image *loaded_image_info,
113 const char *env_var)
114{
115 size_t size;
116 const char *env = env_get(env_var);
117
118 loaded_image_info->load_options = NULL;
119 loaded_image_info->load_options_size = 0;
120 if (!env)
121 return;
122 size = strlen(env) + 1;
123 loaded_image_info->load_options = calloc(size, sizeof(u16));
124 if (!loaded_image_info->load_options) {
125 printf("ERROR: Out of memory\n");
126 return;
127 }
128 utf8_to_utf16(loaded_image_info->load_options, (u8 *)env, size);
129 loaded_image_info->load_options_size = size * 2;
130}
131
0d9d501f
AG
132static void *copy_fdt(void *fdt)
133{
134 u64 fdt_size = fdt_totalsize(fdt);
ad0c1a3d
AG
135 unsigned long fdt_ram_start = -1L, fdt_pages;
136 u64 new_fdt_addr;
0d9d501f 137 void *new_fdt;
ad0c1a3d 138 int i;
0d9d501f 139
ad0c1a3d
AG
140 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
141 u64 ram_start = gd->bd->bi_dram[i].start;
142 u64 ram_size = gd->bd->bi_dram[i].size;
0d9d501f 143
ad0c1a3d
AG
144 if (!ram_size)
145 continue;
146
147 if (ram_start < fdt_ram_start)
148 fdt_ram_start = ram_start;
149 }
150
151 /* Give us at least 4kb breathing room */
a44bffcc 152 fdt_size = ALIGN(fdt_size + 4096, EFI_PAGE_SIZE);
ad0c1a3d
AG
153 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
154
155 /* Safe fdt location is at 128MB */
156 new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size;
e09159c8
HS
157 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
158 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
ad0c1a3d
AG
159 &new_fdt_addr) != EFI_SUCCESS) {
160 /* If we can't put it there, put it somewhere */
a44bffcc 161 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
e09159c8
HS
162 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
163 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
85a6e9b3
AG
164 &new_fdt_addr) != EFI_SUCCESS) {
165 printf("ERROR: Failed to reserve space for FDT\n");
166 return NULL;
167 }
ad0c1a3d 168 }
85a6e9b3 169
ad0c1a3d 170 new_fdt = (void*)(ulong)new_fdt_addr;
0d9d501f
AG
171 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
172 fdt_set_totalsize(new_fdt, fdt_size);
173
174 return new_fdt;
175}
176
3eb0841b 177static efi_status_t efi_do_enter(
2074f700 178 efi_handle_t image_handle, struct efi_system_table *st,
c6fa5df6
AG
179 EFIAPI efi_status_t (*entry)(
180 efi_handle_t image_handle,
181 struct efi_system_table *st))
b06d8ac3
HS
182{
183 efi_status_t ret = EFI_LOAD_ERROR;
184
185 if (entry)
186 ret = entry(image_handle, st);
187 st->boottime->exit(image_handle, ret, 0, NULL);
188 return ret;
189}
190
ec6617c3 191#ifdef CONFIG_ARM64
c6fa5df6 192static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)(
2074f700
HS
193 efi_handle_t image_handle, struct efi_system_table *st),
194 efi_handle_t image_handle, struct efi_system_table *st)
ec6617c3
AW
195{
196 /* Enable caches again */
197 dcache_enable();
198
b06d8ac3 199 return efi_do_enter(image_handle, st, entry);
ec6617c3
AW
200}
201#endif
202
dc500c36 203#ifdef CONFIG_ARMV7_NONSEC
f17f2001
MK
204static bool is_nonsec;
205
dc500c36
MK
206static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)(
207 efi_handle_t image_handle, struct efi_system_table *st),
208 efi_handle_t image_handle, struct efi_system_table *st)
209{
210 /* Enable caches again */
211 dcache_enable();
212
f17f2001
MK
213 is_nonsec = true;
214
dc500c36
MK
215 return efi_do_enter(image_handle, st, entry);
216}
217#endif
218
806d2fa8
AG
219/* Carve out DT reserved memory ranges */
220static efi_status_t efi_carve_out_dt_rsv(void *fdt)
221{
222 int nr_rsv, i;
223 uint64_t addr, size, pages;
224
225 nr_rsv = fdt_num_mem_rsv(fdt);
226
227 /* Look for an existing entry and add it to the efi mem map. */
228 for (i = 0; i < nr_rsv; i++) {
229 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
230 continue;
231
232 pages = ALIGN(size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT;
233 efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
234 false);
235 }
236
237 return EFI_SUCCESS;
238}
239
bc4f9133
HS
240static efi_status_t efi_install_fdt(void *fdt)
241{
242 bootm_headers_t img = { 0 };
243 ulong fdt_pages, fdt_size, fdt_start, fdt_end;
244 efi_status_t ret;
245
246 if (fdt_check_header(fdt)) {
247 printf("ERROR: invalid device tree\n");
248 return EFI_INVALID_PARAMETER;
249 }
250
251 /* Prepare fdt for payload */
252 fdt = copy_fdt(fdt);
253 if (!fdt)
254 return EFI_OUT_OF_RESOURCES;
255
256 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
257 printf("ERROR: failed to process device tree\n");
258 return EFI_LOAD_ERROR;
259 }
260
806d2fa8
AG
261 if (efi_carve_out_dt_rsv(fdt) != EFI_SUCCESS) {
262 printf("ERROR: failed to carve out memory\n");
263 return EFI_LOAD_ERROR;
264 }
265
bc4f9133
HS
266 /* Link to it in the efi tables */
267 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
268 if (ret != EFI_SUCCESS)
269 return EFI_OUT_OF_RESOURCES;
270
271 /* And reserve the space in the memory map */
272 fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK;
273 fdt_end = ((ulong)fdt) + fdt_totalsize(fdt);
274 fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK;
275 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
276 /* Give a bootloader the chance to modify the device tree */
277 fdt_pages += 2;
278 ret = efi_add_memory_map(fdt_start, fdt_pages,
279 EFI_BOOT_SERVICES_DATA, true);
280 return ret;
281}
282
b9939336
AG
283/*
284 * Load an EFI payload into a newly allocated piece of memory, register all
285 * EFI objects it would want to access and jump to it.
286 */
bc4f9133 287static efi_status_t do_bootefi_exec(void *efi,
3eb0841b
HS
288 struct efi_device_path *device_path,
289 struct efi_device_path *image_path)
b9939336 290{
95c5553e
RC
291 struct efi_loaded_image loaded_image_info = {};
292 struct efi_object loaded_image_info_obj = {};
58bc69d2 293 struct efi_object mem_obj = {};
bf19273e 294 struct efi_device_path *memdp = NULL;
45204b10 295 efi_status_t ret;
95c5553e 296
c6fa5df6
AG
297 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
298 struct efi_system_table *st);
b9939336 299
bf19273e
RC
300 /*
301 * Special case for efi payload not loaded from disk, such as
302 * 'bootefi hello' or for example payload loaded directly into
303 * memory via jtag/etc:
304 */
305 if (!device_path && !image_path) {
306 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
307 /* actual addresses filled in after efi_load_pe() */
308 memdp = efi_dp_from_mem(0, 0, 0);
309 device_path = image_path = memdp;
58bc69d2
AG
310 efi_add_handle(&mem_obj);
311
312 ret = efi_add_protocol(mem_obj.handle, &efi_guid_device_path,
313 device_path);
314 if (ret != EFI_SUCCESS)
315 goto exit;
bf19273e
RC
316 } else {
317 assert(device_path && image_path);
318 }
319
95c5553e
RC
320 efi_setup_loaded_image(&loaded_image_info, &loaded_image_info_obj,
321 device_path, image_path);
322
b9939336
AG
323 /*
324 * gd lives in a fixed register which may get clobbered while we execute
325 * the payload. So save it here and restore it on every callback entry
326 */
327 efi_save_gd();
328
b57f48a8
HS
329 /* Transfer environment variable bootargs as load options */
330 set_load_options(&loaded_image_info, "bootargs");
b9939336
AG
331 /* Load the EFI payload */
332 entry = efi_load_pe(efi, &loaded_image_info);
95c5553e 333 if (!entry) {
45204b10 334 ret = EFI_LOAD_ERROR;
95c5553e
RC
335 goto exit;
336 }
80a4800e 337
bf19273e
RC
338 if (memdp) {
339 struct efi_device_path_memory *mdp = (void *)memdp;
340 mdp->memory_type = loaded_image_info.image_code_type;
341 mdp->start_address = (uintptr_t)loaded_image_info.image_base;
342 mdp->end_address = mdp->start_address +
343 loaded_image_info.image_size;
344 }
345
ad644e7c
RC
346 /* we don't support much: */
347 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
348 "{ro,boot}(blob)0000000000000000");
349
b9939336 350 /* Call our payload! */
edcef3ba 351 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
a86aeaf2
AG
352
353 if (setjmp(&loaded_image_info.exit_jmp)) {
95c5553e 354 ret = loaded_image_info.exit_status;
95c5553e 355 goto exit;
a86aeaf2
AG
356 }
357
69bd459d
AG
358#ifdef CONFIG_ARM64
359 /* On AArch64 we need to make sure we call our payload in < EL3 */
360 if (current_el() == 3) {
361 smp_kick_all_cpus();
362 dcache_disable(); /* flush cache before switch to EL2 */
ec6617c3
AW
363
364 /* Move into EL2 and keep running there */
ea54ad59
HS
365 armv8_switch_to_el2((ulong)entry,
366 (ulong)&loaded_image_info_obj.handle,
7c5e1feb 367 (ulong)&systab, 0, (ulong)efi_run_in_el2,
ec6617c3
AW
368 ES_TO_AARCH64);
369
370 /* Should never reach here, efi exits with longjmp */
371 while (1) { }
69bd459d
AG
372 }
373#endif
374
dc500c36 375#ifdef CONFIG_ARMV7_NONSEC
f17f2001 376 if (armv7_boot_nonsec() && !is_nonsec) {
dc500c36
MK
377 dcache_disable(); /* flush cache before switch to HYP */
378
379 armv7_init_nonsec();
380 secure_ram_addr(_do_nonsec_entry)(
381 efi_run_in_hyp,
382 (uintptr_t)entry,
383 (uintptr_t)loaded_image_info_obj.handle,
384 (uintptr_t)&systab);
385
386 /* Should never reach here, efi exits with longjmp */
387 while (1) { }
388 }
389#endif
390
ea54ad59 391 ret = efi_do_enter(loaded_image_info_obj.handle, &systab, entry);
95c5553e
RC
392
393exit:
394 /* image has returned, loaded-image obj goes *poof*: */
395 list_del(&loaded_image_info_obj.link);
58bc69d2
AG
396 if (mem_obj.handle)
397 list_del(&mem_obj.link);
95c5553e
RC
398
399 return ret;
b9939336
AG
400}
401
bc4f9133 402static int do_bootefi_bootmgr_exec(void)
9975fe96
RC
403{
404 struct efi_device_path *device_path, *file_path;
405 void *addr;
406 efi_status_t r;
407
9975fe96
RC
408 /*
409 * gd lives in a fixed register which may get clobbered while we execute
410 * the payload. So save it here and restore it on every callback entry
411 */
412 efi_save_gd();
413
414 addr = efi_bootmgr_load(&device_path, &file_path);
415 if (!addr)
416 return 1;
417
418 printf("## Starting EFI application at %p ...\n", addr);
bc4f9133 419 r = do_bootefi_exec(addr, device_path, file_path);
9975fe96
RC
420 printf("## Application terminated, r = %lu\n",
421 r & ~EFI_ERROR_MASK);
422
423 if (r != EFI_SUCCESS)
424 return 1;
425
426 return 0;
427}
428
b9939336
AG
429/* Interpreter command to boot an arbitrary EFI image from memory */
430static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
431{
bc4f9133
HS
432 unsigned long addr;
433 char *saddr;
3eb0841b 434 efi_status_t r;
354264b3
AG
435 unsigned long fdt_addr;
436 void *fdt;
b9939336 437
c3b11dea
HS
438 /* Allow unaligned memory access */
439 allow_unaligned();
440
fc225e60
HS
441 /* Initialize EFI drivers */
442 r = efi_init_obj_list();
443 if (r != EFI_SUCCESS) {
444 printf("Error: Cannot set up EFI drivers, r = %lu\n",
445 r & ~EFI_ERROR_MASK);
446 return CMD_RET_FAILURE;
447 }
448
b9939336 449 if (argc < 2)
3c1dcef6 450 return CMD_RET_USAGE;
bc4f9133
HS
451
452 if (argc > 2) {
354264b3 453 fdt_addr = simple_strtoul(argv[2], NULL, 16);
bc4f9133
HS
454 if (!fdt_addr && *argv[2] != '0')
455 return CMD_RET_USAGE;
456 /* Install device tree */
354264b3
AG
457 fdt = map_sysmem(fdt_addr, 0);
458 r = efi_install_fdt(fdt);
bc4f9133
HS
459 if (r != EFI_SUCCESS) {
460 printf("ERROR: failed to install device tree\n");
461 return CMD_RET_FAILURE;
462 }
463 } else {
464 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
465 efi_install_configuration_table(&efi_guid_fdt, NULL);
466 printf("WARNING: booting without device tree\n");
467 }
c7ae3dfd
SG
468#ifdef CONFIG_CMD_BOOTEFI_HELLO
469 if (!strcmp(argv[1], "hello")) {
5e44489b 470 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
b9939336 471
51c533fd
HS
472 saddr = env_get("loadaddr");
473 if (saddr)
474 addr = simple_strtoul(saddr, NULL, 16);
475 else
476 addr = CONFIG_SYS_LOAD_ADDR;
354264b3 477 memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size);
c7ae3dfd 478 } else
623b3a57
HS
479#endif
480#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
481 if (!strcmp(argv[1], "selftest")) {
7aca68ca
HS
482 struct efi_loaded_image loaded_image_info = {};
483 struct efi_object loaded_image_info_obj = {};
484
f972dc14
HS
485 /* Construct a dummy device path. */
486 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
487 (uintptr_t)&efi_selftest,
488 (uintptr_t)&efi_selftest);
489 bootefi_image_path = efi_dp_from_file(NULL, 0, "\\selftest");
490
7aca68ca
HS
491 efi_setup_loaded_image(&loaded_image_info,
492 &loaded_image_info_obj,
493 bootefi_device_path, bootefi_image_path);
623b3a57
HS
494 /*
495 * gd lives in a fixed register which may get clobbered while we
496 * execute the payload. So save it here and restore it on every
497 * callback entry
498 */
499 efi_save_gd();
d78e40d6
HS
500 /* Transfer environment variable efi_selftest as load options */
501 set_load_options(&loaded_image_info, "efi_selftest");
502 /* Execute the test */
ea54ad59 503 r = efi_selftest(loaded_image_info_obj.handle, &systab);
c2b53902 504 efi_restore_gd();
d78e40d6 505 free(loaded_image_info.load_options);
c2b53902
HS
506 list_del(&loaded_image_info_obj.link);
507 return r != EFI_SUCCESS;
623b3a57 508 } else
c7ae3dfd 509#endif
9975fe96 510 if (!strcmp(argv[1], "bootmgr")) {
bc4f9133 511 return do_bootefi_bootmgr_exec();
9975fe96 512 } else {
c7ae3dfd 513 saddr = argv[1];
b9939336 514
c7ae3dfd 515 addr = simple_strtoul(saddr, NULL, 16);
49db1cb8
HS
516 /* Check that a numeric value was passed */
517 if (!addr && *saddr != '0')
518 return CMD_RET_USAGE;
c7ae3dfd 519
1c39809b
AG
520 }
521
5ee31baf 522 printf("## Starting EFI application at %08lx ...\n", addr);
354264b3 523 r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path,
bc4f9133 524 bootefi_image_path);
1da1bac4
HS
525 printf("## Application terminated, r = %lu\n",
526 r & ~EFI_ERROR_MASK);
b9939336 527
1da1bac4
HS
528 if (r != EFI_SUCCESS)
529 return 1;
530 else
531 return 0;
b9939336
AG
532}
533
534#ifdef CONFIG_SYS_LONGHELP
535static char bootefi_help_text[] =
1c39809b
AG
536 "<image address> [fdt address]\n"
537 " - boot EFI payload stored at address <image address>.\n"
538 " If specified, the device tree located at <fdt address> gets\n"
c7ae3dfd
SG
539 " exposed as EFI configuration table.\n"
540#ifdef CONFIG_CMD_BOOTEFI_HELLO
623b3a57
HS
541 "bootefi hello\n"
542 " - boot a sample Hello World application stored within U-Boot\n"
543#endif
544#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
bc4f9133 545 "bootefi selftest [fdt address]\n"
623b3a57 546 " - boot an EFI selftest application stored within U-Boot\n"
d78e40d6
HS
547 " Use environment variable efi_selftest to select a single test.\n"
548 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
c7ae3dfd 549#endif
f623e07f 550 "bootefi bootmgr [fdt addr]\n"
9975fe96
RC
551 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
552 "\n"
553 " If specified, the device tree located at <fdt address> gets\n"
554 " exposed as EFI configuration table.\n";
b9939336
AG
555#endif
556
557U_BOOT_CMD(
1c39809b 558 bootefi, 3, 0, do_bootefi,
92dfd922 559 "Boots an EFI payload from memory",
b9939336
AG
560 bootefi_help_text
561);
0f4060eb 562
95c5553e
RC
563void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
564{
565 char filename[32] = { 0 }; /* dp->str is u16[32] long */
566 char *s;
f9d334bd 567
95c5553e
RC
568 if (strcmp(dev, "Net")) {
569 struct blk_desc *desc;
2db1eba1 570 disk_partition_t fs_partition;
95c5553e 571 int part;
8c3df0bf 572
2db1eba1
HS
573 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
574 1);
575 if (part < 0)
8300be61 576 return;
0f4060eb 577
95c5553e
RC
578 bootefi_device_path = efi_dp_from_part(desc, part);
579 } else {
092f2f35 580#ifdef CONFIG_NET
95c5553e
RC
581 bootefi_device_path = efi_dp_from_eth();
582#endif
583 }
c07ad7c0 584
9975fe96
RC
585 if (!path)
586 return;
587
49271666
AG
588 if (strcmp(dev, "Net")) {
589 /* Add leading / to fs paths, because they're absolute */
95c5553e 590 snprintf(filename, sizeof(filename), "/%s", path);
49271666 591 } else {
95c5553e 592 snprintf(filename, sizeof(filename), "%s", path);
49271666 593 }
3e433e96 594 /* DOS style file path: */
95c5553e 595 s = filename;
3e433e96
RC
596 while ((s = strchr(s, '/')))
597 *s++ = '\\';
95c5553e 598 bootefi_image_path = efi_dp_from_file(NULL, 0, filename);
0f4060eb 599}
This page took 0.2863 seconds and 4 git commands to generate.