Skip to main content

Booting

 UEFI: Universal Extensible firmware interface

 https://en.wikipedia.org/wiki/UEFI

UEFI does not depend on boot sectors unlike PC BIOS. It defines a boot manager as part of the UEFI specification.     

The boot configuration is defined by variables stored in NVRAM including the variables that define file system paths to OS loaders and OS kernels.  ON power on, Based on it, the boot manager runs the specified boot loaders or kernel. The file path varies depending on the computer architecture.The file path to OS loader might be efi\boot\bootx64.efi.(edit)

Booting UEFI systems from GPT partitioned disks is called UEFI-GPT booting.

EFI system partition is normaly the first partition in the disk. It requires a size of around 100 MB. I t is accessed by UEFI firmware when the computer is powered on. It stores UEFI applications and OS boot loaders. it is formatted using a specific FAT file system for UEFI  .

 

UEFI shell and its usage

https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/sb/efi_instructions.pdf

https://github.com/Kostr/UEFI-Lessons

https://linuxhint.com/use-uefi-interactive-shell-and-its-common-commands/

 

UEFI specification

https://uefi.org/specs/UEFI/2.10/

 

https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-8.1-and-8/hh824898(v=win.10)

Windows Boot Manager(bootmgfw.efi)

https://en.wikipedia.org/wiki/Windows_Boot_Manager

it is found in the directory /EFI/Microsoft/boot. It is the first program launched by UEFI of the computer and uses the information to load the winload.efi or winresume.efi (if teh system has hibernated) and are always located at windows\system32\boot.

Boot Configuration Data (BCD) is a firmware-independent database for boot-time configuration data and is used by windows boot manager. 

boot configuration data is the database file that has the same format as the windows registry. for UEFI boot, the file is located at /EFI/Microsoft/Boot/BCD on the EFI System Partition.

 

All the drivers seem to be present in /efi/Microsoft/Boot  


 


Comments

Popular posts from this blog

Intel Core Multi core line of processors introduced around 2006. Replaced the Pentium line of processors. The line up of intel core processors includes low end-i3 (entry level consumer), mid end-i5 (mainstream consumer), high end-i7  and enthusiast-i9. Xeon refers to workstation and server brands. Instead, its better to differentiate generation by technical features. For example, intel core i7 of 12th, 13th and 14th generation differ in base speed, number of performance and efficiency cores,  cache size and micro-architecture technology.  This naming scheme was introduced in 2008 and does not correspond to specific technical features like  number of cores in a processor.  What is multi core processor? A multi core processor is a processor on a single Integrated circuit with two or more execution units called cores. So the processing tasks can be executed in parallel on the separate cores. It might involve data parallelism or task parallelism or hybrid involving ...

Pinging the Host

Our devices require a GPRS connection to the service provider(SP). Recently, we had a problem in which the connection to SP was lost after a certain period of time. So we had to reset the connection to the SP and resetting the connection takes a a few seconds which can be irritable to the customer. So we had to maintain the connection with the SP. Our CTO suggested that the devices number should be maintained in the APN routing table of the SP. Because the SP clears the table after some time to accomodate more incoming connection requests and clear out the ones which are inactive. So the solution was a "ping" to the SP every few minutes, so that the devices entry is maintained in the routing table of the APN. Now the device can connect to SP even after staying idle for the whole night!!

Installing Fedora 10 on External Western digital USB drive for X86_64 AMD processor.

I am putting forward the steps to install F10 on AMD Athlon -X2 Presario CQ60 laptop and my experiences while installing it, so that anyone who reads it can benefit maybe in a small way. 1. Download Fedora iso for architechture suitable to your PC (see fedora installation notes) and create a DVD. Verify the dvd as given in http://fedoraproject.org/en/verify . You have to download a tool for checksum generation (sha1) for the dvd and compare it with the checksum listed on the fedora website for verification. http://docs.fedoraproject.org/readme-burning-isos/en_US/sn-validating-files.html 2. The WD drive should be unformatted. So i had to do that from windows vista->computer(right click)->Manage->Disk Management->WD drive (right click)->Delete partition. Otherwise i got an error that amount of space selected was not available when trying to partition the WD drive during installation. 3. Insert the WD drive and boot into the DVD. Select the default option of install. Do a c...