mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-18 15:31:54 +02:00
- Merged GPL 45581 - Harmonized DNSFilter/dnsprivacy code with upstream (now enabled by default like upstream). - Merged 5.02p1 SDK - Merged RT-AX86U binary blobs - Ported iproute2-4.3 patches to iproute2-5.11 - Switch to Asus's implementation of static lease hostnames
33 lines
626 B
Makefile
33 lines
626 B
Makefile
ifeq ($(ISPCTRL),y)
|
|
|
|
#ISP ChinaTel
|
|
ifeq ($(ELINK),y)
|
|
ISPCTRL_DESC := CN.CT.elink
|
|
else ifeq ($(TR181),y)
|
|
ISPCTRL_DESC := tr181
|
|
else ifeq ($(TR069),y)
|
|
ISPCTRL_DESC := tr098
|
|
endif
|
|
ifneq ($(CHINATEL),)
|
|
ifeq ($(ISPCTRL_DESC),)
|
|
ISPCTRL_DESC := CN.CT.$(CHINATEL)
|
|
else
|
|
ISPCTRL_DESC := $(ISPCTRL_DESC).$(CHINATEL)
|
|
endif
|
|
endif
|
|
#ISP ChinaTel
|
|
|
|
#Other ISPs
|
|
#Please place other ISP's ISPCTRL_DESC related code here.
|
|
#Ohter ISPs
|
|
|
|
ifneq ($(ISPCTRL_DESC),)
|
|
export ISPCTRL_POSTFIX := _$(ISPCTRL_DESC)
|
|
endif
|
|
|
|
endif
|
|
|
|
all:
|
|
ifneq ($(ISPCTRL_DESC),)
|
|
@echo '#define RT_MODELDESC "{\"ISPCtrl\":\"$(ISPCTRL_DESC)\"}"' >> router/shared/version.h
|
|
endif
|