Ejemplo n.º 1
0
        private async Task <IBcdInvoker> GetBcdInvoker()
        {
            var volume = await GetMainOsVolume();

            var bcdFullFilename = Path.Combine(volume.Root, PartitionName.EfiEsp.CombineRelativeBcdPath());

            return(bcdInvokerFactory.Create(bcdFullFilename));
        }
Ejemplo n.º 2
0
        private async Task <IBcdInvoker> GetBcdInvoker()
        {
            var volume = await this.GetVolumeByPartitionName(PartitionName.EfiEsp);

            var bcdFullFilename = volume.Root.CombineRelativeBcdPath();

            return(bcdInvokerFactory.Create(bcdFullFilename));
        }
Ejemplo n.º 3
0
        private async Task <IBcdInvoker> GetBcdInvoker()
        {
            var disk = await GetDeviceDisk();

            var efiEsp = await disk.GetPartitionByName(PartitionName.EfiEsp);

            var bcdFullFilename = efiEsp.Root.CombineRelativeBcdPath();

            return(bcdInvokerFactory.Create(bcdFullFilename));
        }
Ejemplo n.º 4
0
 public async Task <IBcdInvoker> GetBcdInvoker()
 {
     return(bcdInvoker ?? (bcdInvoker = bcdInvokerFactory.Create((await GetEfiespVolume()).GetBcdFullFilename())));
 }