From 0cc83a6a9f8a67b962ce2d989dee7fe73da4a8f5 Mon Sep 17 00:00:00 2001 From: Michael Liebmann Date: Sat, 17 Aug 2013 20:02:42 +0200 Subject: [PATCH] gui/update.cpp: disable "systemFS with settings" menu item on apollo, as non-working at the moment --- src/gui/update.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/update.cpp b/src/gui/update.cpp index 63e651dc0..ec2ad885f 100644 --- a/src/gui/update.cpp +++ b/src/gui/update.cpp @@ -649,8 +649,10 @@ void CFlashExpert::showMTDSelector(const std::string & actionkey) sprintf(sActionKey, "%s%d", actionkey.c_str(), lx); mtdselector->addItem(new CMenuForwarderNonLocalized(mtdInfo->getMTDName(lx).c_str(), enabled, NULL, this, sActionKey, CRCInput::convertDigitToKey(shortcut++))); } +#ifndef BOXMODEL_APOLLO if (actionkey == "writemtd") mtdselector->addItem(new CMenuForwarderNonLocalized("systemFS with settings", true, NULL, this, "writemtd10", CRCInput::convertDigitToKey(shortcut++))); +#endif mtdselector->exec(NULL,""); delete mtdselector; }