mirror of
git://slackware.nl/current.git
synced 2025-01-15 15:41:54 +01:00
76fc4757ac
Mon Nov 4 17:08:47 UTC 2013 Slackware 14.1 x86_64 stable is released! It's been another interesting release cycle here at Slackware bringing new features like support for UEFI machines, updated compilers and development tools, the switch from MySQL to MariaDB, and many more improvements throughout the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-)
28 lines
808 B
Diff
28 lines
808 B
Diff
From 2d8f962284f40b918c0fc8385e58fcba219ddc12 Mon Sep 17 00:00:00 2001
|
|
From: Fedora Ninjas <pjones@fedoraproject.org>
|
|
Date: Wed, 28 Nov 2012 17:13:24 -0500
|
|
Subject: [PATCH 2/5] Remove device path padding on non-Itanium
|
|
|
|
This code predates EFI support on any x86 hardware, and it's a strict
|
|
violation of the specification. Windows doesn't do it either.
|
|
---
|
|
src/include/efi.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/include/efi.h b/src/include/efi.h
|
|
index be667ae..c2ac853 100644
|
|
--- a/src/include/efi.h
|
|
+++ b/src/include/efi.h
|
|
@@ -294,7 +294,9 @@ typedef struct {
|
|
uint8_t signature[16];
|
|
uint8_t mbr_type;
|
|
uint8_t signature_type;
|
|
+#ifdef __ia64
|
|
uint8_t padding[6]; /* Emperically needed */
|
|
+#endif
|
|
} __attribute__((packed)) HARDDRIVE_DEVICE_PATH;
|
|
|
|
typedef struct {
|
|
--
|
|
1.8.0
|
|
|