Merge Official Source
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
commit
3f1e84aedf
@ -13,6 +13,8 @@ PKG_HASH := 18a853fe39fad7ad03a90cc2d4275aeaed6da69735defac3492b80508843dd4a
|
||||
|
||||
PKG_MAINTAINER := Tomasz Maciej Nowak <tmn505@gmail.com>
|
||||
|
||||
UBOOT_USE_INTREE_DTC:=1
|
||||
|
||||
include $(INCLUDE_DIR)/u-boot.mk
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
||||
@ -1266,30 +1266,44 @@ endef
|
||||
|
||||
$(eval $(call KernelPackage,video-mem2mem))
|
||||
|
||||
define KernelPackage/video-dma
|
||||
define KernelPackage/video-dma-contig
|
||||
SUBMENU:=$(VIDEO_MENU)
|
||||
TITLE:=Video DMA support
|
||||
HIDDEN:=1
|
||||
DEPENDS:=+kmod-video-videobuf2
|
||||
KCONFIG:= \
|
||||
CONFIG_VIDEOBUF2_DMA_CONTIG \
|
||||
CONFIG_VIDEOBUF2_DMA_SG
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-dma-contig.ko \
|
||||
$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-dma-sg.ko
|
||||
AUTOLOAD:=$(call AutoLoad,66,videobuf2-dma-contig videobuf2-dma-sg)
|
||||
KCONFIG:=CONFIG_VIDEOBUF2_DMA_CONTIG
|
||||
FILES:=$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-dma-contig.ko
|
||||
AUTOLOAD:=$(call AutoLoad,66,videobuf2-dma-contig)
|
||||
$(call AddDepends/video)
|
||||
endef
|
||||
|
||||
define KernelPackage/video-dma/description
|
||||
Video DMA support
|
||||
define KernelPackage/video-dma-contig/description
|
||||
Video DMA support Contig
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,video-dma))
|
||||
|
||||
$(eval $(call KernelPackage,video-dma-contig))
|
||||
|
||||
define KernelPackage/video-dma-sg
|
||||
SUBMENU:=$(VIDEO_MENU)
|
||||
TITLE:=Video DMA support
|
||||
HIDDEN:=1
|
||||
DEPENDS:=+kmod-video-videobuf2
|
||||
KCONFIG:=CONFIG_VIDEOBUF2_DMA_SG
|
||||
FILES:=$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-dma-sg.ko
|
||||
AUTOLOAD:=$(call AutoLoad,66,videobuf2-dma-sg)
|
||||
$(call AddDepends/video)
|
||||
endef
|
||||
|
||||
define KernelPackage/video-dma-sg/description
|
||||
Video DMA support SG
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,video-dma-sg))
|
||||
|
||||
define KernelPackage/video-coda
|
||||
TITLE:=i.MX VPU support
|
||||
DEPENDS:=@(TARGET_imx&&TARGET_imx_cortexa9) +kmod-video-mem2mem +kmod-video-dma
|
||||
DEPENDS:=@(TARGET_imx&&TARGET_imx_cortexa9) +kmod-video-mem2mem +kmod-video-dma-contig
|
||||
KCONFIG:= \
|
||||
CONFIG_VIDEO_CODA \
|
||||
CONFIG_VIDEO_IMX_VDOA
|
||||
@ -1311,7 +1325,7 @@ $(eval $(call KernelPackage,video-coda))
|
||||
|
||||
define KernelPackage/video-pxp
|
||||
TITLE:=i.MX PXP support
|
||||
DEPENDS:=@TARGET_imx +kmod-video-mem2mem +kmod-video-dma
|
||||
DEPENDS:=@TARGET_imx +kmod-video-mem2mem +kmod-video-dma-contig
|
||||
KCONFIG:= CONFIG_VIDEO_IMX_PXP
|
||||
FILES:= $(LINUX_DIR)/drivers/media/$(V4L2_MEM2MEM_DIR)/imx-pxp.ko@lt6.1 \
|
||||
$(LINUX_DIR)/drivers/media/platform/nxp/imx-pxp.ko@ge6.1
|
||||
@ -1329,7 +1343,7 @@ $(eval $(call KernelPackage,video-pxp))
|
||||
|
||||
define KernelPackage/video-tw686x
|
||||
TITLE:=TW686x support
|
||||
DEPENDS:=@PCIE_SUPPORT +kmod-video-dma +kmod-sound-core
|
||||
DEPENDS:=@PCIE_SUPPORT +kmod-video-dma-contig +kmod-video-dma-sg +kmod-sound-core
|
||||
KCONFIG:= CONFIG_VIDEO_TW686X
|
||||
FILES:= $(LINUX_DIR)/drivers/media/pci/tw686x/tw686x.ko
|
||||
AUTOLOAD:=$(call AutoProbe,tw686x)
|
||||
|
||||
@ -15,7 +15,6 @@ PKG_HASH:=3eebc5a1f97847fa530cf90654b9f3b8f21a13c9ea3d07495325651580cd3373
|
||||
HOST_BUILD_DEPENDS:=libsepol/host
|
||||
|
||||
PKG_MAINTAINER:=Dominick Grift <dominick.grift@defensec.nl>
|
||||
PKG_CPE_ID:=cpe:/a:selinuxproject:secilc
|
||||
PKG_LICENSE:=BSD-2-Clause
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
|
||||
@ -27,7 +27,7 @@ define KernelPackage/codec-bcm2835
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/staging/vc04_services/bcm2835-codec/bcm2835-codec.ko
|
||||
AUTOLOAD:=$(call AutoLoad,67,bcm2835-codec)
|
||||
$(call AddDepends/video,@TARGET_bcm27xx +kmod-vchiq-mmal-bcm2835 +kmod-video-dma +kmod-video-mem2mem)
|
||||
$(call AddDepends/video,@TARGET_bcm27xx +kmod-vchiq-mmal-bcm2835 +kmod-video-dma-contig +kmod-video-mem2mem)
|
||||
endef
|
||||
|
||||
define KernelPackage/codec-bcm2835/description
|
||||
@ -72,7 +72,7 @@ define KernelPackage/isp-bcm2835
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/staging/vc04_services/bcm2835-isp/bcm2835-isp.ko
|
||||
AUTOLOAD:=$(call AutoLoad,67,bcm2835-isp)
|
||||
$(call AddDepends/video,@TARGET_bcm27xx +kmod-vchiq-mmal-bcm2835 +kmod-video-dma)
|
||||
$(call AddDepends/video,@TARGET_bcm27xx +kmod-vchiq-mmal-bcm2835 +kmod-video-dma-contig)
|
||||
endef
|
||||
|
||||
define KernelPackage/isp-bcm2835/description
|
||||
|
||||
@ -27,7 +27,7 @@ Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com>
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
|
||||
@@ -359,7 +360,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
@@ -360,7 +361,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
image-$(CONFIG_TQM8555) += cuImage.tqm8555
|
||||
image-$(CONFIG_TQM8560) += cuImage.tqm8560
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
@ -38,7 +38,7 @@ Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com>
|
||||
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -341,6 +341,11 @@ adder875-redboot)
|
||||
@@ -346,6 +346,11 @@ adder875-redboot)
|
||||
platformo="$object/fixed-head.o $object/redboot-8xx.o"
|
||||
binary=y
|
||||
;;
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
src-plat-$(CONFIG_TL_WDR4900_V1) += simpleboot.c fixed-head.S
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
@@ -360,6 +361,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
@@ -361,6 +362,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
image-$(CONFIG_TQM8555) += cuImage.tqm8555
|
||||
image-$(CONFIG_TQM8560) += cuImage.tqm8560
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
@ -48,7 +48,7 @@
|
||||
image-$(CONFIG_MVME7100) += dtbImage.mvme7100
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -341,6 +341,7 @@ adder875-redboot)
|
||||
@@ -346,6 +346,7 @@ adder875-redboot)
|
||||
platformo="$object/fixed-head.o $object/redboot-8xx.o"
|
||||
binary=y
|
||||
;;
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
|
||||
@@ -363,6 +364,7 @@ image-$(CONFIG_TQM8560) += cuImage.tqm
|
||||
@@ -364,6 +365,7 @@ image-$(CONFIG_TQM8560) += cuImage.tqm
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
|
||||
image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
|
||||
@ -48,7 +48,7 @@
|
||||
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -342,7 +342,8 @@ adder875-redboot)
|
||||
@@ -347,7 +347,8 @@ adder875-redboot)
|
||||
binary=y
|
||||
;;
|
||||
simpleboot-hiveap-330|\
|
||||
|
||||
@ -45,7 +45,7 @@ WS-AP3825i AP.
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
|
||||
@@ -365,6 +366,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
@@ -366,6 +367,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
|
||||
image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
|
||||
image-$(CONFIG_WS_AP3710I) += simpleImage.ws-ap3710i
|
||||
@ -55,7 +55,7 @@ WS-AP3825i AP.
|
||||
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -343,7 +343,8 @@ adder875-redboot)
|
||||
@@ -348,7 +348,8 @@ adder875-redboot)
|
||||
;;
|
||||
simpleboot-hiveap-330|\
|
||||
simpleboot-tl-wdr4900-v1|\
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
src-plat-$(CONFIG_WS_AP3825I) += simpleboot.c fixed-head.S
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
@@ -366,6 +367,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
@@ -367,6 +368,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
|
||||
image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
|
||||
image-$(CONFIG_WS_AP3710I) += simpleImage.ws-ap3710i
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
src-plat-$(CONFIG_HIVEAP_330) += simpleboot.c fixed-head.S
|
||||
src-plat-$(CONFIG_TL_WDR4900_V1) += simpleboot.c fixed-head.S
|
||||
src-plat-$(CONFIG_WS_AP3710I) += simpleboot.c fixed-head.S
|
||||
@@ -364,6 +365,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
@@ -365,6 +366,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
image-$(CONFIG_TQM8555) += cuImage.tqm8555
|
||||
image-$(CONFIG_TQM8560) += cuImage.tqm8560
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
@ -47,7 +47,7 @@
|
||||
image-$(CONFIG_WS_AP3710I) += simpleImage.ws-ap3710i
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -341,6 +341,7 @@ adder875-redboot)
|
||||
@@ -346,6 +346,7 @@ adder875-redboot)
|
||||
platformo="$object/fixed-head.o $object/redboot-8xx.o"
|
||||
binary=y
|
||||
;;
|
||||
|
||||
@ -24,7 +24,7 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
||||
image-$(CONFIG_EPAPR_BOOT) += zImage.epapr
|
||||
|
||||
#
|
||||
@@ -430,15 +429,6 @@ $(obj)/dtbImage.%: vmlinux $(wrapperbits
|
||||
@@ -431,15 +430,6 @@ $(obj)/dtbImage.%: vmlinux $(wrapperbits
|
||||
$(obj)/vmlinux.strip: vmlinux
|
||||
$(STRIP) -s -R .comment $< -o $@
|
||||
|
||||
|
||||
@ -16,17 +16,17 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
||||
|
||||
--- a/arch/powerpc/boot/Makefile
|
||||
+++ b/arch/powerpc/boot/Makefile
|
||||
@@ -345,6 +345,7 @@ image-$(CONFIG_MPC836x_MDS) += cuImage.
|
||||
@@ -342,6 +342,7 @@ image-$(CONFIG_MPC834x_ITX) += cuImage.
|
||||
image-$(CONFIG_ASP834x) += dtbImage.asp834x-redboot
|
||||
|
||||
# Board ports in arch/powerpc/platform/85xx/Kconfig
|
||||
+image-y += zImage.la3000000
|
||||
image-$(CONFIG_MPC8540_ADS) += cuImage.mpc8540ads
|
||||
image-$(CONFIG_MPC8560_ADS) += cuImage.mpc8560ads
|
||||
image-$(CONFIG_MPC85xx_CDS) += cuImage.mpc8541cds \
|
||||
image-$(CONFIG_MPC85xx_MDS) += cuImage.mpc8568mds
|
||||
image-$(CONFIG_MPC85xx_DS) += cuImage.mpc8544ds \
|
||||
cuImage.mpc8572ds
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -254,6 +254,11 @@ if [ -n "$esm_blob" -a "$platform" != "p
|
||||
@@ -258,6 +258,11 @@ if [ -n "$esm_blob" -a "$platform" != "p
|
||||
fi
|
||||
|
||||
case "$platform" in
|
||||
|
||||
@ -27,7 +27,7 @@ Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com>
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
|
||||
@@ -351,7 +352,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
@@ -352,7 +353,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
image-$(CONFIG_TQM8555) += cuImage.tqm8555
|
||||
image-$(CONFIG_TQM8560) += cuImage.tqm8560
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
@ -38,7 +38,7 @@ Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com>
|
||||
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -345,6 +345,11 @@ adder875-redboot)
|
||||
@@ -350,6 +350,11 @@ adder875-redboot)
|
||||
platformo="$object/fixed-head.o $object/redboot-8xx.o"
|
||||
binary=y
|
||||
;;
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
src-plat-$(CONFIG_TL_WDR4900_V1) += simpleboot.c fixed-head.S
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
@@ -352,6 +353,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
@@ -353,6 +354,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
image-$(CONFIG_TQM8555) += cuImage.tqm8555
|
||||
image-$(CONFIG_TQM8560) += cuImage.tqm8560
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
@ -48,7 +48,7 @@
|
||||
image-$(CONFIG_MVME7100) += dtbImage.mvme7100
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -345,6 +345,7 @@ adder875-redboot)
|
||||
@@ -350,6 +350,7 @@ adder875-redboot)
|
||||
platformo="$object/fixed-head.o $object/redboot-8xx.o"
|
||||
binary=y
|
||||
;;
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
|
||||
@@ -355,6 +356,7 @@ image-$(CONFIG_TQM8560) += cuImage.tqm
|
||||
@@ -356,6 +357,7 @@ image-$(CONFIG_TQM8560) += cuImage.tqm
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
|
||||
image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
|
||||
@ -48,7 +48,7 @@
|
||||
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -346,7 +346,8 @@ adder875-redboot)
|
||||
@@ -351,7 +351,8 @@ adder875-redboot)
|
||||
binary=y
|
||||
;;
|
||||
simpleboot-hiveap-330|\
|
||||
|
||||
@ -45,7 +45,7 @@ WS-AP3825i AP.
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
|
||||
@@ -357,6 +358,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
@@ -358,6 +359,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
|
||||
image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
|
||||
image-$(CONFIG_WS_AP3710I) += simpleImage.ws-ap3710i
|
||||
@ -55,7 +55,7 @@ WS-AP3825i AP.
|
||||
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -347,7 +347,8 @@ adder875-redboot)
|
||||
@@ -352,7 +352,8 @@ adder875-redboot)
|
||||
;;
|
||||
simpleboot-hiveap-330|\
|
||||
simpleboot-tl-wdr4900-v1|\
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
src-plat-$(CONFIG_WS_AP3825I) += simpleboot.c fixed-head.S
|
||||
|
||||
src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
|
||||
@@ -358,6 +359,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
@@ -359,6 +360,7 @@ image-$(CONFIG_KSI8560) += cuImage.ksi
|
||||
image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
|
||||
image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
|
||||
image-$(CONFIG_WS_AP3710I) += simpleImage.ws-ap3710i
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
src-plat-$(CONFIG_HIVEAP_330) += simpleboot.c fixed-head.S
|
||||
src-plat-$(CONFIG_TL_WDR4900_V1) += simpleboot.c fixed-head.S
|
||||
src-plat-$(CONFIG_WS_AP3710I) += simpleboot.c fixed-head.S
|
||||
@@ -356,6 +357,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
@@ -357,6 +358,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
|
||||
image-$(CONFIG_TQM8555) += cuImage.tqm8555
|
||||
image-$(CONFIG_TQM8560) += cuImage.tqm8560
|
||||
image-$(CONFIG_KSI8560) += cuImage.ksi8560
|
||||
@ -47,7 +47,7 @@
|
||||
image-$(CONFIG_WS_AP3710I) += simpleImage.ws-ap3710i
|
||||
--- a/arch/powerpc/boot/wrapper
|
||||
+++ b/arch/powerpc/boot/wrapper
|
||||
@@ -345,6 +345,7 @@ adder875-redboot)
|
||||
@@ -350,6 +350,7 @@ adder875-redboot)
|
||||
platformo="$object/fixed-head.o $object/redboot-8xx.o"
|
||||
binary=y
|
||||
;;
|
||||
|
||||
@ -24,7 +24,7 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
||||
image-$(CONFIG_EPAPR_BOOT) += zImage.epapr
|
||||
|
||||
#
|
||||
@@ -421,15 +420,6 @@ $(obj)/dtbImage.%: vmlinux $(wrapperbits
|
||||
@@ -422,15 +421,6 @@ $(obj)/dtbImage.%: vmlinux $(wrapperbits
|
||||
$(obj)/vmlinux.strip: vmlinux
|
||||
$(STRIP) -s -R .comment $< -o $@
|
||||
|
||||
|
||||
8
target/linux/ramips/dts/mt7621_dlink_dir-2055-a1.dts
Normal file
8
target/linux/ramips/dts/mt7621_dlink_dir-2055-a1.dts
Normal file
@ -0,0 +1,8 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
|
||||
#include "mt7621_dlink_dir_nand_128m.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "dlink,dir-2055-a1", "mediatek,mt7621-soc";
|
||||
model = "D-Link DIR-2055 A1";
|
||||
};
|
||||
@ -772,6 +772,14 @@ define Device/dlink_dir-1960-a1
|
||||
endef
|
||||
TARGET_DEVICES += dlink_dir-1960-a1
|
||||
|
||||
define Device/dlink_dir-2055-a1
|
||||
$(Device/dlink_dir_nand_128m)
|
||||
DEVICE_PACKAGES += -kmod-usb-ledtrig-usbport
|
||||
DEVICE_MODEL := DIR-2055
|
||||
DEVICE_VARIANT := A1
|
||||
endef
|
||||
TARGET_DEVICES += dlink_dir-2055-a1
|
||||
|
||||
define Device/dlink_dir-2150-a1
|
||||
$(Device/dlink_dir_nand_128m)
|
||||
DEVICE_MODEL := DIR-2150
|
||||
|
||||
@ -92,6 +92,7 @@ dlink,dap-x1860-a1)
|
||||
ucidef_set_led_rssi "rssihigh" "RSSIHIGH" "green:rssihigh" "wlan1" "76" "100"
|
||||
;;
|
||||
dlink,dir-1960-a1|\
|
||||
dlink,dir-2055-a1|\
|
||||
dlink,dir-2150-a1|\
|
||||
dlink,dir-2640-a1|\
|
||||
dlink,dir-2660-a1)
|
||||
|
||||
@ -71,6 +71,7 @@ platform_do_upgrade() {
|
||||
dlink,covr-x1860-a1|\
|
||||
dlink,dap-x1860-a1|\
|
||||
dlink,dir-1960-a1|\
|
||||
dlink,dir-2055-a1|\
|
||||
dlink,dir-2150-a1|\
|
||||
dlink,dir-2640-a1|\
|
||||
dlink,dir-2660-a1|\
|
||||
|
||||
@ -389,7 +389,6 @@ CONFIG_SMP_ON_UP=y
|
||||
CONFIG_SND=y
|
||||
# CONFIG_SND_COMPRESS_OFFLOAD is not set
|
||||
CONFIG_SND_DMAENGINE_PCM=y
|
||||
# CONFIG_SND_DRIVERS is not set
|
||||
# CONFIG_SND_HDA_TEGRA is not set
|
||||
CONFIG_SND_JACK=y
|
||||
CONFIG_SND_JACK_INPUT_DEV=y
|
||||
|
||||
@ -430,7 +430,6 @@ CONFIG_SND=y
|
||||
CONFIG_SND_AUDIO_GRAPH_CARD=y
|
||||
# CONFIG_SND_COMPRESS_OFFLOAD is not set
|
||||
CONFIG_SND_DMAENGINE_PCM=y
|
||||
# CONFIG_SND_DRIVERS is not set
|
||||
# CONFIG_SND_HDA_TEGRA is not set
|
||||
CONFIG_SND_JACK=y
|
||||
CONFIG_SND_JACK_INPUT_DEV=y
|
||||
|
||||
Loading…
Reference in New Issue
Block a user