mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-02 20:05:55 +00:00
Lakka 5.x Switch changes (#1853) Lakka v5.x switchroot 5.1.2 (#1871) Fix Switch Issue's in upstream 5.x (#1888) Minor Switch Changes (#1893) Lakka v5.x switch 3 (#1895) Lakka v5.x switch 4 (#1898) L4T: Xorg-server: Fix build issue (#1924) Switch: remove ra patch Lakka v5.x switch 6 (#1926) Cleanups, More LibreELEC Stuff, more permission fixes, Misc switch stuff. (#1930) Switch: U-Boot: bump version to 2024-NX02 (#1946) L4T/Ayn post-upstreaming fixes - retroarch_joypad_autoconfig: remove spaces from file names - retroarch: remove Switch specific patch merged upstream - libXv: move to L4T packages folder (package removed in upstream) - bring some packages from v5.x to L4T packages - ffmpeg: remove vulkan - remove stella core from Switch build (missing C++ headers) - Ayn/Odin: use proper kernel arg to not hide kernel messages in console - connman: add wpa_supplicant support back
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
From 0e7d63502f6ea68b5c56036c493e72e83b3f145d Mon Sep 17 00:00:00 2001
|
|
From: Rod Smith <rodsmith@rodsbooks.com>
|
|
Date: Mon, 6 Mar 2023 17:28:18 -0500
|
|
Subject: [PATCH 11/12] Document previous merge
|
|
|
|
---
|
|
NEWS | 7 +++++++
|
|
support.h | 2 +-
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/NEWS b/NEWS
|
|
index dc1660e..5c6dfa1 100644
|
|
--- a/NEWS
|
|
+++ b/NEWS
|
|
@@ -18,6 +18,13 @@
|
|
- Make explicit casts in gptcurses.cc to eliminate compiler warnings about
|
|
mis-matched types in printw() statements.
|
|
|
|
+- In previous versions, rEFInd accepted only integer values for partition
|
|
+ start points, end points, and sizes, and it interpreted decimal values
|
|
+ incorrectly. That is, if you typed "+9.5G" as the partition end point,
|
|
+ you'd end up with something just 9 sectors in size. This version now
|
|
+ truncates decimal numbers to their integral values, so you'd get a 9 GiB
|
|
+ partition instead.
|
|
+
|
|
1.0.9 (4/14/2022):
|
|
------------------
|
|
|
|
diff --git a/support.h b/support.h
|
|
index f91f1bc..4a9f414 100644
|
|
--- a/support.h
|
|
+++ b/support.h
|
|
@@ -8,7 +8,7 @@
|
|
#include <stdlib.h>
|
|
#include <string>
|
|
|
|
-#define GPTFDISK_VERSION "1.0.9.1"
|
|
+#define GPTFDISK_VERSION "1.0.9.2"
|
|
|
|
#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__) || defined (__APPLE__)
|
|
// Darwin (Mac OS) & FreeBSD: disk IOCTLs are different, and there is no lseek64
|
|
--
|
|
2.31.1
|
|
|