mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
Origin commit data
------------------
Branch: ni/coolstream
Commit: 87d60639ae
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-11-29 (Thu, 29 Nov 2018)
Origin message was:
------------------
- update: fix release cycle handling; add human readable version string
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
146 lines
3.4 KiB
C++
146 lines
3.4 KiB
C++
/*
|
|
Neutrino-GUI - DBoxII-Project
|
|
|
|
Copyright (C) 2001 Steffen Hehn 'McClean'
|
|
Homepage: http://dbox.cyberphoria.org/
|
|
|
|
Kommentar:
|
|
|
|
Diese GUI wurde von Grund auf neu programmiert und sollte nun vom
|
|
Aufbau und auch den Ausbaumoeglichkeiten gut aussehen. Neutrino basiert
|
|
auf der Client-Server Idee, diese GUI ist also von der direkten DBox-
|
|
Steuerung getrennt. Diese wird dann von Daemons uebernommen.
|
|
|
|
|
|
License: GPL
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
|
|
#ifndef __flashtool__
|
|
#define __flashtool__
|
|
|
|
#include <gui/widget/progresswindow.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <mtd/mtd-user.h>
|
|
|
|
class CFlashTool
|
|
{
|
|
private:
|
|
|
|
CProgressWindow* statusViewer;
|
|
std::string mtdDevice;
|
|
std::string ErrorMessage;
|
|
|
|
int fd;
|
|
mtd_info_t meminfo;
|
|
bool isnand;
|
|
|
|
bool getInfo();
|
|
bool erase(int globalProgressEnd=-1);
|
|
void stopDaemons(); //NI
|
|
|
|
public:
|
|
CFlashTool();
|
|
~CFlashTool();
|
|
|
|
const std::string & getErrorMessage(void) const;
|
|
|
|
void setMTDDevice( const std::string & mtddevice );
|
|
void setStatusViewer( CProgressWindow* statusview );
|
|
|
|
bool program( const std::string & filename, int globalProgressEndErase=-1, int globalProgressEndFlash=-1 );
|
|
bool readFromMTD( const std::string & filename, int globalProgressEnd=-1 );
|
|
|
|
bool check_cramfs( const std::string & filename );
|
|
bool check_md5( const std::string & filename, const std::string & smd5);
|
|
|
|
void reboot();
|
|
};
|
|
|
|
|
|
class CFlashVersionInfo
|
|
{
|
|
private:
|
|
|
|
char date[11];
|
|
char time[6];
|
|
char releaseCycle[4];
|
|
char vstring[5]; // human readable version
|
|
int version;
|
|
time_t datetime;
|
|
|
|
public:
|
|
char snapshot;
|
|
|
|
CFlashVersionInfo(const std::string & versionString);
|
|
|
|
const char *getDate(void) const;
|
|
const char *getTime(void) const;
|
|
const char *getReleaseCycle(void) const;
|
|
const char *getType(bool localized = false) const;
|
|
int getVersion(void) const;
|
|
const char *getVersionString(void) const;
|
|
time_t getDateTime(void) const { return datetime; };
|
|
};
|
|
|
|
|
|
class CMTDInfo
|
|
{
|
|
private:
|
|
|
|
struct SMTDPartition
|
|
{
|
|
int size;
|
|
int erasesize;
|
|
std::string name;
|
|
std::string filename;
|
|
};
|
|
|
|
std::vector<SMTDPartition*> mtdData;
|
|
|
|
void getPartitionInfo();
|
|
|
|
CMTDInfo();
|
|
~CMTDInfo();
|
|
|
|
public:
|
|
static CMTDInfo* getInstance();
|
|
|
|
int getMTDCount();
|
|
|
|
//mtdinfos abfragen (nach mtdnummer)
|
|
std::string getMTDName(const int pos );
|
|
std::string getMTDFileName(const int pos );
|
|
int getMTDSize(const int pos );
|
|
int getMTDEraseSize(const int pos );
|
|
|
|
//mtdinfos abfragen (nach mtd-filename)
|
|
std::string getMTDName(const std::string & filename);
|
|
int getMTDSize( const std::string & filename );
|
|
int getMTDEraseSize( const std::string & filename );
|
|
|
|
int findMTDNumber(const std::string & filename);
|
|
int findMTDNumberFromName(const char* name);
|
|
std::string findMTDsystem();
|
|
std::string findMTDkernel(); //NI
|
|
};
|
|
|
|
|
|
#endif
|