Skip to content

Commit

Permalink
kernel: bump 6.1 to 6.1.8 (coolsnowwolf#10802)
Browse files Browse the repository at this point in the history
Signed-off-by: Linhui Liu <liulinhui36@gmail.com>
  • Loading branch information
misaka36 committed Jan 24, 2023
1 parent 02d584f commit 0a113ed
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions include/kernel-6.1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
LINUX_VERSION-6.1 = .7
LINUX_KERNEL_HASH-6.1.7 = 4ab048bad2e7380d3b827f1fad5ad2d2fc4f2e80e1c604d85d1f8781debe600f
LINUX_VERSION-6.1 = .8
LINUX_KERNEL_HASH-6.1.8 = b60bb53ab8ba370a270454b11e93d41af29126fc72bd6ede517673e2e57b816d
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Subject: [PATCH] net/usb/qmi_wwan: add MeigLink modem support

#define QUECTEL_VENDOR_ID 0x2c7c
/* These Quectel products use Quectel's vendor ID */
@@ -1156,6 +1158,11 @@ static const struct usb_device_id option
@@ -1162,6 +1164,11 @@ static const struct usb_device_id option
.driver_info = ZLP },
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_BG96),
.driver_info = RSVD(4) },
Expand Down
2 changes: 1 addition & 1 deletion target/linux/generic/hack-6.1/904-debloat_dma_buf.patch
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
+dma-shared-buffer-objs := $(dma-buf-objs-y)
--- a/drivers/dma-buf/dma-buf.c
+++ b/drivers/dma-buf/dma-buf.c
@@ -1589,4 +1589,5 @@ static void __exit dma_buf_deinit(void)
@@ -1583,4 +1583,5 @@ static void __exit dma_buf_deinit(void)
kern_unmount(dma_buf_mnt);
dma_buf_uninit_sysfs_statistics();
}
Expand Down
4 changes: 2 additions & 2 deletions target/linux/generic/hack-6.1/920-device_tree_cmdline.patch
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Subject: [PATCH] of/ftd: add device tree cmdline

--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -1174,6 +1174,9 @@ int __init early_init_dt_scan_chosen(cha
@@ -1187,6 +1187,9 @@ int __init early_init_dt_scan_chosen(cha
p = of_get_flat_dt_prop(node, "bootargs", &l);
if (p != NULL && l > 0)
strscpy(cmdline, p, min(l, COMMAND_LINE_SIZE));
+ p = of_get_flat_dt_prop(node, "bootargs-append", &l);
+ if (p != NULL && l > 0)
+ strlcat(cmdline, p, min_t(int, strlen(cmdline) + (int)l, COMMAND_LINE_SIZE));

handle_cmdline:
/*
* CONFIG_CMDLINE is meant to be a default in case nothing else
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>

--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13949,6 +13949,7 @@ F: include/uapi/linux/meye.h
@@ -13951,6 +13951,7 @@ F: include/uapi/linux/meye.h

MOTORCOMM PHY DRIVER
M: Peter Geis <pgwipeout@gmail.com>
Expand Down

0 comments on commit 0a113ed

Please sign in to comment.