mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
621ac2f55c
PD#SWPL-183292 Problem: porting usb and wireless modules Solution: 1. porting usb and wireless modules 2. setting the default value of CONFIG_AMLOGIC_KERNEL_VERSION as 16612 3. modify the reset Makefile Verify: local Change-Id: Ie3c99a75a1f3f439ebaa8d5cc852a654465fb379 Signed-off-by: Wanwei Jiang <wanwei.jiang@amlogic.com>
11 lines
365 B
Makefile
11 lines
365 B
Makefile
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
MODULE_NAME = amlogic-reset
|
|
obj-$(CONFIG_AMLOGIC_RESET_MESON) = $(MODULE_NAME).o
|
|
$(MODULE_NAME)-y += main.o reset-meson.o
|
|
$(MODULE_NAME)-$(CONFIG_AMLOGIC_DOS_RESET_MESON) += reset-meson-dos.o
|
|
|
|
PR_FMT = $(subst amlogic-,,$(MODULE_NAME))
|
|
PR_FMT_DEFINE="-Dpr_fmt(fmt)= \"[$(PR_FMT)]: \" fmt"
|
|
ccflags-y += $(PR_FMT_DEFINE)
|