cad1891021
Added three patches to fix the mmc issue as described here: https://github.com/SolidHal/Librean/issues/17 Source for the patches is the chrome os kernel. Links to the commits can be found in the issue. Locking into version 4.17.2 for the time being. Better organized patches. Added logic to only apply tested patches on fresh kernel. Moved some debian build improvements in from my devsus master branch, including switching from xfce to lxqt. May be able to add option between the two in the future, as the issue that led to switching DEs may have been with the xorg video drivers that are now skipped by the script and not xfce itself. Cleaned up uneeded old configs
17 lines
507 B
Diff
17 lines
507 B
Diff
diff --git a/block/partitions/efi.c b/block/partitions/efi.c
|
|
index b33671d..068d5a6 100644
|
|
--- a/block/partitions/efi.c
|
|
+++ b/block/partitions/efi.c
|
|
@@ -369,7 +369,9 @@
|
|
|
|
/* Check the GUID Partition Table signature */
|
|
if (le64_to_cpu((*gpt)->signature) == GPT_HEADER_SIGNATURE_IGNORED) {
|
|
- pr_debug("GUID Partition Table at LBA %llu marked IGNOREME\n");
|
|
+ pr_debug("GUID Partition Table at LBA %llu marked IGNOREME\n",
|
|
+ (unsigned long long)lba);
|
|
+
|
|
if (ignored)
|
|
*ignored = 1;
|
|
goto fail;
|
|
|