Codebase list fwupd / e130ceb
Drop all patchs (upstream) Mario Limonciello 4 years ago
4 changed file(s) with 0 addition(s) and 95 deletion(s). Raw diff Collapse all Expand all
+0
-21
debian/patches/0001-Allows-confined-snaps-to-activate-fwupd-via-D-Bus.patch less more
0 From d5988a533948e1912c50e93ab27183def7319d92 Mon Sep 17 00:00:00 2001
1 From: Ken VanDine <ken.vandine@canonical.com>
2 Date: Tue, 12 Nov 2019 09:36:39 -0800
3 Subject: [PATCH] Allows confined snaps to activate fwupd via D-Bus
4
5 ---
6 data/org.freedesktop.fwupd.service.in | 1 +
7 1 file changed, 1 insertion(+)
8
9 diff --git a/data/org.freedesktop.fwupd.service.in b/data/org.freedesktop.fwupd.service.in
10 index af051972..53f51710 100644
11 --- a/data/org.freedesktop.fwupd.service.in
12 +++ b/data/org.freedesktop.fwupd.service.in
13 @@ -4,3 +4,4 @@ Documentation=https://fwupd.org/
14 Exec=@libexecdir@/fwupd/fwupd
15 User=root
16 SystemdService=fwupd.service
17 +AssumedAppArmorLabel=unconfined
18 --
19 2.20.1
20
+0
-29
debian/patches/0001-fastboot-Fix-a-regression-when-updating-modem-firmwa.patch less more
0 From 6e55cff444858f1b1c3dd5a642ba87a26d9ff2e7 Mon Sep 17 00:00:00 2001
1 From: Richard Hughes <richard@hughsie.com>
2 Date: Tue, 5 Nov 2019 10:44:30 +0000
3 Subject: [PATCH] fastboot: Fix a regression when updating modem firmware
4
5 Set `IS_BOOTLOADER` unconditionally when in fastboot mode. This seems logically
6 what it is; a degraded mode that's able to update firmware without runtime
7 functionality.
8
9 Fixes https://github.com/fwupd/fwupd/issues/1532
10 ---
11 plugins/fastboot/fu-fastboot-device.c | 1 +
12 1 file changed, 1 insertion(+)
13
14 diff --git a/plugins/fastboot/fu-fastboot-device.c b/plugins/fastboot/fu-fastboot-device.c
15 index eba706a0..8dc56e3a 100644
16 --- a/plugins/fastboot/fu-fastboot-device.c
17 +++ b/plugins/fastboot/fu-fastboot-device.c
18 @@ -695,6 +695,7 @@ fu_fastboot_device_init (FuFastbootDevice *self)
19 /* this is a safe default, even using USBv1 */
20 self->blocksz = 512;
21 fu_device_add_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_UPDATABLE);
22 + fu_device_add_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_IS_BOOTLOADER);
23 fu_device_set_remove_delay (FU_DEVICE (self), FASTBOOT_REMOVE_DELAY_RE_ENUMERATE);
24 }
25
26 --
27 2.20.1
28
+0
-42
debian/patches/0001-trivial-debian-only-use-mingw-w64-tools-in-archs-wit.patch less more
0 From e6170ca6dde515f7c0fd3f13720a5a2570522472 Mon Sep 17 00:00:00 2001
1 From: Mario Limonciello <mario.limonciello@dell.com>
2 Date: Tue, 5 Nov 2019 11:43:44 -0600
3 Subject: [PATCH] trivial: debian: only use mingw-w64-tools in archs with UEFI
4 plugin
5
6 ---
7 contrib/ci/dependencies.xml | 14 ++++++++++++--
8 1 file changed, 12 insertions(+), 2 deletions(-)
9
10 diff --git a/contrib/ci/dependencies.xml b/contrib/ci/dependencies.xml
11 index eeaaccf2..94629de9 100644
12 --- a/contrib/ci/dependencies.xml
13 +++ b/contrib/ci/dependencies.xml
14 @@ -896,12 +896,22 @@
15 <package />
16 </distro>
17 <distro id="debian">
18 - <control />
19 + <control>
20 + <inclusive>amd64</inclusive>
21 + <inclusive>arm64</inclusive>
22 + <inclusive>armhf</inclusive>
23 + <inclusive>i386</inclusive>
24 + </control>
25 <package variant="x86_64" />
26 <package variant="i386" />
27 </distro>
28 <distro id="ubuntu">
29 - <control />
30 + <control>
31 + <inclusive>amd64</inclusive>
32 + <inclusive>arm64</inclusive>
33 + <inclusive>armhf</inclusive>
34 + <inclusive>i386</inclusive>
35 + </control>
36 <package variant="x86_64" />
37 </distro>
38 </dependency>
39 --
40 2.20.1
41
+0
-3
debian/patches/series less more
0 0001-fastboot-Fix-a-regression-when-updating-modem-firmwa.patch
1 0001-trivial-debian-only-use-mingw-w64-tools-in-archs-wit.patch
2 0001-Allows-confined-snaps-to-activate-fwupd-via-D-Bus.patch