Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 77f32dfd authored by Denis Turischev's avatar Denis Turischev Committed by H. Peter Anvin
Browse files

x86: Add reboot fixup for SBC-fitPC2



The CompuLab SBC-fitPC2 board needs to reboot via BIOS.

Signed-off-by: default avatarDenis Turischev <denis@compulab.co.il>
Signed-off-by: default avatarMike Rapoport <mike@compulab.co.il>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
parent 8bcdbe42
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -249,6 +249,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
			DMI_MATCH(DMI_PRODUCT_NAME, "VGN-Z540N"),
			DMI_MATCH(DMI_PRODUCT_NAME, "VGN-Z540N"),
		},
		},
	},
	},
	{	/* Handle problems with rebooting on CompuLab SBC-FITPC2 */
		.callback = set_bios_reboot,
		.ident = "CompuLab SBC-FITPC2",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "CompuLab"),
			DMI_MATCH(DMI_PRODUCT_NAME, "SBC-FITPC2"),
		},
	},
	{ }
	{ }
};
};