Need to convert '/' back to '\' when creating a path. Ideally, this
would be filesystem type dependent, but that's difficult to accomplish and it's unclear how the UEFI firmware will cope. Be conservative and make boot loaders cope instead. Sponsored by: Netflix
This commit is contained in:
parent
167b7a41ff
commit
670a4056e2
@ -527,12 +527,17 @@ find_geom_efimedia(struct gmesh *mesh, const char *dev)
|
||||
static int
|
||||
build_dp(const char *efimedia, const char *relpath, efidp *dp)
|
||||
{
|
||||
char *fp, *dptxt = NULL;
|
||||
char *fp, *dptxt = NULL, *cp, *rp;
|
||||
int rv = 0;
|
||||
efidp out = NULL;
|
||||
size_t len;
|
||||
|
||||
fp = path_to_file_dp(relpath);
|
||||
rp = strdup(relpath);
|
||||
for (cp = rp; *cp; cp++)
|
||||
if (*cp == '/')
|
||||
*cp = '\\';
|
||||
fp = path_to_file_dp(rp);
|
||||
free(rp);
|
||||
if (fp == NULL) {
|
||||
rv = ENOMEM;
|
||||
goto errout;
|
||||
|
Loading…
x
Reference in New Issue
Block a user