Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F170933833
D19242.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D19242.diff
View Options
Index: head/usr.sbin/efivar/efiutil.c
===================================================================
--- head/usr.sbin/efivar/efiutil.c
+++ head/usr.sbin/efivar/efiutil.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2017 Netflix, Inc.
+ * Copyright (c) 2017-2019 Netflix, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -120,6 +120,7 @@
void
efi_print_load_option(uint8_t *data, size_t datalen, int Aflag, int bflag, int uflag)
{
+ char *dev, *relpath, *abspath;
uint8_t *ep = data + datalen;
uint8_t *walker = data;
uint32_t attr;
@@ -131,6 +132,7 @@
int len;
void *opt;
int optlen;
+ int rv;
if (datalen < sizeof(attr) + sizeof(fplen) + sizeof(efi_char))
return;
@@ -162,8 +164,15 @@
free(str);
while (dp < edp && SIZE(dp, edp) > sizeof(efidp_header)) {
efidp_format_device_path(buf, sizeof(buf), dp, SIZE(dp, edp));
+ rv = efivar_device_path_to_unix_path(dp, &dev, &relpath, &abspath);
dp = (efidp)((char *)dp + efidp_size(dp));
printf(" %s\n", buf);
+ if (rv == 0) {
+ printf(" %*s:%s\n", len + (int)strlen(dev), dev, relpath);
+ free(dev);
+ free(relpath);
+ free(abspath);
+ }
}
if (optlen == 0)
return;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Sep 8, 5:10 PM (14 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
38526299
Default Alt Text
D19242.diff (1 KB)
Attached To
Mode
D19242: Add the unix path to the output of `efivar --load-option`
Attached
Detach File
Event Timeline
Log In to Comment