Пример #1
0
/* Entrypoint from boot.c */
void setupFakeEfi(void)
{
	setupEfiGetOverrideConfig();
	// Generate efi device strings 
	setupEfiDevices();
	// Initialize the base table
	setupEfiTables();
	// Initialize the device tree
	setupEfiDeviceTree();
	// Add configuration table entries to both the services table and the device tree
	setupEfiConfigurationTable();
}
Пример #2
0
/* Entrypoint from boot.c */
void setupFakeEfi(void)
{
        // load smbios.plist file if any
        setupSmbiosConfigFile();
	
        // Generate efi device strings 
	setupEfiDevices();
	
	// Initialize the base table
	setupEfiTables();
	
        // Initialize the device tree
        setupEfiDeviceTree();

        // Add configuration table entries to both the services table and the device tree
        setupEfiConfigurationTable();
}