mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
31 lines
908 B
Diff
31 lines
908 B
Diff
From f5b72f3a5e63c77606cee9b599407d42261e021b Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Mon, 28 Sep 2020 20:23:30 +0100
|
|
Subject: [PATCH 0246/1085] char: Add broadcom char drivers back to build files
|
|
|
|
See: https://github.com/raspberrypi/linux/issues/3875
|
|
Signed-off-by: popcornmix <popcornmix@gmail.com>
|
|
---
|
|
drivers/char/Kconfig | 2 ++
|
|
drivers/char/Makefile | 1 +
|
|
2 files changed, 3 insertions(+)
|
|
|
|
--- a/drivers/char/Kconfig
|
|
+++ b/drivers/char/Kconfig
|
|
@@ -5,6 +5,8 @@
|
|
|
|
menu "Character devices"
|
|
|
|
+source "drivers/char/broadcom/Kconfig"
|
|
+
|
|
source "drivers/tty/Kconfig"
|
|
|
|
config TTY_PRINTK
|
|
--- a/drivers/char/Makefile
|
|
+++ b/drivers/char/Makefile
|
|
@@ -44,3 +44,4 @@ obj-$(CONFIG_PS3_FLASH) += ps3flash.o
|
|
obj-$(CONFIG_XILLYBUS_CLASS) += xillybus/
|
|
obj-$(CONFIG_POWERNV_OP_PANEL) += powernv-op-panel.o
|
|
obj-$(CONFIG_ADI) += adi.o
|
|
+obj-$(CONFIG_BRCM_CHAR_DRIVERS) += broadcom/
|