From 28d87ac04509aac2e38c73faf570a121e23318e1 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Fri, 24 Aug 2018 09:44:58 -0400 Subject: [PATCH] Linux v4.18-12721-g33e17876ea4e --- ...Drop-__initdata-from-bgrt_image_size.patch | 33 -- ...CPI-BGRT-boot-graphics-to-the-frameb.patch | 201 ---------- ...t-copy-the-boot-graphics-for-non-nat.patch | 85 ---- ...-console-takeover-if-the-current-con.patch | 100 ----- ...eover-the-console-from-atomic-contex.patch | 63 --- arm-dts-armada388-helios4.patch | 352 ----------------- ...n-Add-support-for-RPi-voltage-sensor.patch | 373 ------------------ bcm2837-enable-pmu.patch | 33 -- configs/fedora/generic/CONFIG_ARCH_K3 | 1 + configs/fedora/generic/CONFIG_RESET_QCOM_AOSS | 1 + configs/fedora/generic/CONFIG_SUN50I_DE2_BUS | 1 + configs/fedora/generic/CONFIG_UBIFS_FS_XATTR | 1 + .../generic/arm/aarch64/CONFIG_SUN50I_DE2_BUS | 1 + gitrev | 2 +- kernel-aarch64-debug.config | 4 + kernel-aarch64.config | 4 + kernel-armv7hl-debug.config | 4 + kernel-armv7hl-lpae-debug.config | 4 + kernel-armv7hl-lpae.config | 4 + kernel-armv7hl.config | 4 + kernel-i686-PAE.config | 4 + kernel-i686-PAEdebug.config | 4 + kernel-i686-debug.config | 4 + kernel-i686.config | 4 + kernel-ppc64le-debug.config | 4 + kernel-ppc64le.config | 4 + kernel-s390x-debug.config | 4 + kernel-s390x.config | 4 + kernel-x86_64-debug.config | 4 + kernel-x86_64.config | 4 + kernel.spec | 18 +- sources | 2 +- 32 files changed, 75 insertions(+), 1256 deletions(-) delete mode 100644 0005-efi-bgrt-Drop-__initdata-from-bgrt_image_size.patch delete mode 100644 0006-efifb-Copy-the-ACPI-BGRT-boot-graphics-to-the-frameb.patch delete mode 100644 0007-efifb-BGRT-Do-not-copy-the-boot-graphics-for-non-nat.patch delete mode 100644 0009-fbcon-Only-defer-console-takeover-if-the-current-con.patch delete mode 100644 0010-fbcon-Do-not-takeover-the-console-from-atomic-contex.patch delete mode 100644 arm-dts-armada388-helios4.patch delete mode 100644 bcm2837-enable-pmu.patch create mode 100644 configs/fedora/generic/CONFIG_ARCH_K3 create mode 100644 configs/fedora/generic/CONFIG_RESET_QCOM_AOSS create mode 100644 configs/fedora/generic/CONFIG_SUN50I_DE2_BUS create mode 100644 configs/fedora/generic/CONFIG_UBIFS_FS_XATTR create mode 100644 configs/fedora/generic/arm/aarch64/CONFIG_SUN50I_DE2_BUS diff --git a/0005-efi-bgrt-Drop-__initdata-from-bgrt_image_size.patch b/0005-efi-bgrt-Drop-__initdata-from-bgrt_image_size.patch deleted file mode 100644 index ec1ff7fbc..000000000 --- a/0005-efi-bgrt-Drop-__initdata-from-bgrt_image_size.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 421b8aef3902426c4c3ebd23218c0ad282786e1d Mon Sep 17 00:00:00 2001 -From: Hans de Goede -Date: Tue, 3 Jul 2018 17:43:10 +0200 -Subject: [PATCH 5/7] efi/bgrt: Drop __initdata from bgrt_image_size - -bgrt_image_size is necessary to (optionally) show the boot graphics from -the efifb code. The efifb driver is a platform driver, using a normal -driver probe() driver callback. So even though it is always builtin it -cannot reference __initdata. - -Acked-by: Ard Biesheuvel -Signed-off-by: Hans de Goede -Signed-off-by: Bartlomiej Zolnierkiewicz ---- - drivers/firmware/efi/efi-bgrt.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/firmware/efi/efi-bgrt.c b/drivers/firmware/efi/efi-bgrt.c -index 50793fda7819..b22ccfb0c991 100644 ---- a/drivers/firmware/efi/efi-bgrt.c -+++ b/drivers/firmware/efi/efi-bgrt.c -@@ -20,7 +20,7 @@ - #include - - struct acpi_table_bgrt bgrt_tab; --size_t __initdata bgrt_image_size; -+size_t bgrt_image_size; - - struct bmp_header { - u16 id; --- -2.18.0 - diff --git a/0006-efifb-Copy-the-ACPI-BGRT-boot-graphics-to-the-frameb.patch b/0006-efifb-Copy-the-ACPI-BGRT-boot-graphics-to-the-frameb.patch deleted file mode 100644 index 248b34335..000000000 --- a/0006-efifb-Copy-the-ACPI-BGRT-boot-graphics-to-the-frameb.patch +++ /dev/null @@ -1,201 +0,0 @@ -From a5f742d7ba70c702bcf67dd1fd8d5dde3f5042fc Mon Sep 17 00:00:00 2001 -From: Hans de Goede -Date: Tue, 3 Jul 2018 17:43:10 +0200 -Subject: [PATCH 6/7] efifb: Copy the ACPI BGRT boot graphics to the - framebuffer - -On systems where fbcon is configured for deferred console takeover, the -intend is for the framebuffer to show the boot graphics (e.g a vendor -logo) until some message (e.g. an error) is printed or a graphical -session takes over. - -Some firmware relies on the OS to show the boot graphics. - -This patch adds support to efifb to show the boot graphics and -automatically enables this when fbcon is configured for deferred -console takeover. - -Signed-off-by: Hans de Goede -Signed-off-by: Bartlomiej Zolnierkiewicz ---- - drivers/video/fbdev/efifb.c | 140 ++++++++++++++++++++++++++++++++++++ - 1 file changed, 140 insertions(+) - -diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c -index c6f78d27947b..67684412ba8a 100644 ---- a/drivers/video/fbdev/efifb.c -+++ b/drivers/video/fbdev/efifb.c -@@ -9,16 +9,39 @@ - - #include - #include -+#include - #include - #include - #include - #include -+#include - #include - #include