1
0
Fork 0
forked from len0rd/rockbox

Implementation of Bootloader installation/uninstallation for all Targets in rbUtil. Needs testing. FS#6643

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12439 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2007-02-21 20:27:14 +00:00
parent a5e0380d90
commit e863d595b5
23 changed files with 5564 additions and 210 deletions

View file

@ -85,6 +85,11 @@ public:
wxArrayString plat_id;
wxArrayString plat_name;
wxArrayInt plat_released;
wxArrayInt plat_needsbootloader;
wxArrayString plat_bootloadermethod;
wxArrayString plat_bootloadername;
wxArrayInt plat_autodetect;
wxArrayString plat_combinedname;
wxString download_url;
wxString daily_url;
wxString bleeding_url;
@ -92,6 +97,7 @@ public:
wxString font_url;
wxString last_release;
wxString prog_name;
wxString bootloader_url;
// User configuration data.
wxString curplat;
@ -101,6 +107,9 @@ public:
bool curisfull;
bool nocache;
bool portable;
wxString curbootloadermethod;
wxString curbootloader;
wxString curfirmware;
// Global system variables
wxFFile* logfile;
@ -120,6 +129,7 @@ bool InstallRbutil(wxString dest);
wxString stream_err_str(int errnum);
bool rm_rf(wxString file);
#define ERR_DIALOG(msg, title) \
wxLogError("%s: %s", ((wxString) title).c_str(), ((wxString) msg).c_str())
@ -136,4 +146,7 @@ bool rm_rf(wxString file);
#define BUILD_DAILY 1
#define BUILD_BLEEDING 2
#define BOOTLOADER_ADD 0
#define BOOTLOADER_REM 1
#endif