diff options
author | Tom Rini <trini@ti.com> | 2014-06-24 14:06:22 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-24 14:06:22 -0400 |
commit | ba9b42c81b0734d53edfbb1fe4a6ded7de78c5ab (patch) | |
tree | 4a2a320c917e0ec10908b25b0878a62b3210f00b /disk/part.c | |
parent | 19198f8b013b70ae6f497422e5418cc009dea145 (diff) | |
parent | 1638d98052e0d03e46d504b21ec1b88ecfcd87aa (diff) |
Merge branch 'sandbox' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'disk/part.c')
-rw-r--r-- | disk/part.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/disk/part.c b/disk/part.c index b3097e32f0..baceb19c60 100644 --- a/disk/part.c +++ b/disk/part.c @@ -510,6 +510,25 @@ int get_device_and_partition(const char *ifname, const char *dev_part_str, int part; disk_partition_t tmpinfo; + /* + * Special-case a psuedo block device "hostfs", to allow access to the + * host's own filesystem. + */ + if (0 == strcmp(ifname, "hostfs")) { + *dev_desc = NULL; + info->start = 0; + info->size = 0; + info->blksz = 0; + info->bootable = 0; + strcpy((char *)info->type, BOOT_PART_TYPE); + strcpy((char *)info->name, "Sandbox host"); +#ifdef CONFIG_PARTITION_UUIDS + info->uuid[0] = 0; +#endif + + return 0; + } + /* If no dev_part_str, use bootdevice environment variable */ if (!dev_part_str || !strlen(dev_part_str) || !strcmp(dev_part_str, "-")) |