Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDKB-57995: [Onewifi] OneWifi memory Optimization #39

Merged
merged 3 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ lib_LTLIBRARIES=libwifi.la

libwifi_la_CPPFLAGS = -D_ANSC_LINUX -D_ANSC_USER -I$(top_srcdir)/../CcspCommonLibrary/source/ccsp/custom -I$(top_srcdir)/../CcspCommonLibrary/source/ccsp/include -I$(top_srcdir)/../CcspCommonLibrary/source/debug_api/include -I$(top_srcdir)/../CcspCommonLibrary/source/cosa/include -I$(top_srcdir)/../CcspCommonLibrary/source/cosa/include/linux -I$(top_srcdir)/../CcspCommonLibrary/source/ccsp/components/include -I$(top_srcdir)/../CcspCommonLibrary/source/cosa/package/slap/include -I$(top_srcdir)/../hal/include -I$(top_srcdir)/../CcspCommonLibrary/source/util_api/http/include -I$(top_srcdir)/../CcspCommonLibrary/source/util_api/ansc/include -I$(top_srcdir)/lib -I$(top_srcdir)/lib/common -I$(top_srcdir)/../CcspCommonLibrary/source/ccsp/components/common/MessageBusHelper/include -I$(top_srcdir)/../CcspCommonLibrary/source/ccsp/components/common/PoamIrepFolder -I$(top_srcdir)/include/wifi_ssp -I$(top_srcdir)/./include

libwifi_la_CPPFLAGS +=-I$(top_srcdir)/source/dml/dml_webconfig -I$(top_srcdir)/source/dml/tr_181/ml -I$(top_srcdir)/source/dml/tr_181/sbapi -I$(top_srcdir)/include/tr_181/ml
libwifi_la_CPPFLAGS +=-I$(top_srcdir)/source/dml/dml_webconfig
if ONEWIFI_DML_SUPPORT
libwifi_la_CPPFLAGS += -I$(top_srcdir)/source/dml/tr_181/ml -I$(top_srcdir)/source/dml/tr_181/sbapi -I$(top_srcdir)/include/tr_181/ml
endif

if CCSP_ARCH_ARM
libwifi_la_CPPFLAGS += -D_ANSC_LITTLE_ENDIAN_
Expand All @@ -37,10 +40,12 @@ endif
libwifi_la_LDFLAGS=
libwifi_la_SOURCES=

if ONEWIFI_DML_SUPPORT
EXTRA_DEPENDENCIES= \
source/dml/tr_181/sbapi/libCcspWifiAgent_sbapi.la \
source/dml/tr_181/ml/libCcspWifiAgent_ml.la \
source/dml/dml_webconfig/libCcspWifiAgent_dml_webconfig.la
source/dml/dml_webconfig/libCcspWifiAgent_dml_webconfig.la
endif

libwifi_la_DEPENDENCIES= \
$(EXTRA_DEPENDENCIES)
Expand Down
Loading