From 42b967fb8900121133e5044ce92c0c003909598d Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Mon, 23 Oct 2017 08:17:43 +0200 Subject: [PATCH] CNetworkSetup: disable network_services menu Required with yocto build Signed-off-by: Thilo Graf --- src/gui/network_setup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/network_setup.cpp b/src/gui/network_setup.cpp index 45d19a739..3af377dd8 100644 --- a/src/gui/network_setup.cpp +++ b/src/gui/network_setup.cpp @@ -379,12 +379,12 @@ int CNetworkSetup::showNetworkSetup() mf = new CMenuForwarder(LOCALE_FLASHUPDATE_PROXYSERVER_SEP, true, NULL, &proxy, NULL, CRCInput::RC_0); mf->setHint("", LOCALE_MENU_HINT_NET_PROXY); networkSettings->addItem(mf); - +#if 0 //services mf = new CMenuForwarder(LOCALE_NETWORKMENU_SERVICES, true, NULL, &services, NULL, CRCInput::RC_1); mf->setHint("", LOCALE_MENU_HINT_NET_SERVICES); networkSettings->addItem(mf); - +#endif int ret = 0; while(true) { int res = menu_return::RETURN_EXIT;