From cef17e3d59ad93f766e8ee23b1610540a33dfe5e Mon Sep 17 00:00:00 2001 From: Udo Schläpfer Date: Mon, 2 Feb 2015 21:00:14 +0100 Subject: iBasso DX50/DX90: Rockbox loader, replacement for original firmware MangoPlayer. This loader is needed to use Rockbox on iBasso DX50/DX90 devices. It replaces /system/bin/MangoPlayer. It expects - the original firmware MangoPlayer as /system/bin/MangoPlayer_original - the chooser.bmp file as /system/chooser.bmp - the rbmissing.bmp file as /system/rbmissing.bmp - the usb.bmp file as /system/usb.bmp - Rockbox in /mnt/sdcard/.rockbox/ (internal device storage accessable via USB) On first boot or if the device is booted with the hold switch engaged (upper, locked position) this loader will let the user choose between Rockbox and the orginal firmware MangoPlayer. It remembers the last choice and will start the choosen player an following boots. In the chooser screen - the device can be powered off with a power button long press. - Rockbox can be startet with the "Next/Fast Forward" button or by touching the right part of the touchscreen. - the orginal firmware MangoPlayer can be startet with the "Previous/Rewind" button or by touching the left part of the touchscreen. If Rockbox can not be found/executed than a "Rockbox is missing" screen will be shown and the orginal firmware MangoPlayer will be started after 30 seconds. This loader will (try to) restart Rockbox or the orginal firmware MangoPlayer if something unexpected happens. This loader can be installed via a customized firmware image (update.img) or manually via the Android Debug Bridge (if you get adbd started on the device). This is a rewrite and code clean up of the original submission, eliminating the need for a custom Android Vold. This loader "knows", when Rockbox has exited due to a USB mass storage connection remounting /mnt/sdcard and acts accordingly, displaying a "USB connection" screen while waiting to restart Rockbox. Change-Id: I2698e173437f9c7aa1ff40649a290220e2ee0439 --- rbutil/ibassoboot/jni/Android.mk | 8 + rbutil/ibassoboot/jni/ibassodualboot.c | 906 ++++++++++++++++++++++----------- rbutil/ibassoboot/jni/rbmissing.bmp | Bin 0 -> 230454 bytes rbutil/ibassoboot/jni/usb.bmp | Bin 0 -> 230454 bytes 4 files changed, 627 insertions(+), 287 deletions(-) create mode 100644 rbutil/ibassoboot/jni/rbmissing.bmp create mode 100644 rbutil/ibassoboot/jni/usb.bmp diff --git a/rbutil/ibassoboot/jni/Android.mk b/rbutil/ibassoboot/jni/Android.mk index 1d1566d8c0..9cd667c5b9 100644 --- a/rbutil/ibassoboot/jni/Android.mk +++ b/rbutil/ibassoboot/jni/Android.mk @@ -3,4 +3,12 @@ include $(CLEAR_VARS) LOCAL_MODULE := MangoPlayer LOCAL_SRC_FILES := ibassodualboot.c qdbmp.c + +TARGET_ARCH=arm +TARGET_PLATFORM=android-14 +TARGET_ARCH_ABI=armeabi + +#LOCAL_CFLAGS := -DDEBUG +#LOCAL_LDLIBS := -llog + include $(BUILD_EXECUTABLE) diff --git a/rbutil/ibassoboot/jni/ibassodualboot.c b/rbutil/ibassoboot/jni/ibassodualboot.c index 3f20bbeecf..0458ff1b71 100644 --- a/rbutil/ibassoboot/jni/ibassodualboot.c +++ b/rbutil/ibassoboot/jni/ibassodualboot.c @@ -1,13 +1,15 @@ /*************************************************************************** - * __________ __ ___. + * __________ __ ___ * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ - * $Id$ * - * Copyright (C) 2014 by Ilia Sergachev + * Copyright (C) 2014 by Ilia Sergachev: Initial Rockbox port to iBasso DX50 + * Copyright (C) 2014 by Mario Basister: iBasso DX90 port + * Copyright (C) 2014 by Simon Rothen: Initial Rockbox repository submission, additional features + * Copyright (C) 2014 by Udo Schläpfer: Code clean up, additional features * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -19,421 +21,751 @@ * ****************************************************************************/ + #include -#include #include - +#include +#include +#include +#include #include #include -#include +#include +#include +#include +#include +#include +#include -#include -#include -#include -#include -#include +#include "qdbmp.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include +/*- Android logcat ------------------------------------------------------------------------------*/ -#include -#include "qdbmp.h" +#ifdef DEBUG +#include + + +static const char log_tag[] = "Rockbox Boot"; -#define MIN_TIME 1395606821 -#define TIME_FILE "/data/time_store" -#define TIME_CHECK_PERIOD 60 /* seconds */ -#define VOLD_LINK "/data/vold" -#define PLAYER_FILE "/data/chosen_player" -#define NOASK_FLAG "/data/no_ask_once" -#define POLL_MS 10 +void debugf(const char *fmt, ...) +{ + va_list ap; + va_start(ap, fmt); + __android_log_vprint(ANDROID_LOG_DEBUG, log_tag, fmt, ap); + va_end(ap); +} + + +void ldebugf(const char* file, int line, const char *fmt, ...) +{ + va_list ap; + /* 13: 5 literal chars and 8 chars for the line number. */ + char buf[strlen(file) + strlen(fmt) + 13]; + snprintf(buf, sizeof(buf), "%s (%d): %s", file, line, fmt); + va_start(ap, fmt); + __android_log_vprint(ANDROID_LOG_DEBUG, log_tag, buf, ap); + va_end(ap); +} + + +void debug_trace(const char* function) +{ + static const char trace_tag[] = "TRACE: "; + char msg[strlen(trace_tag) + strlen(function) + 1]; + snprintf(msg, sizeof(msg), "%s%s", trace_tag, function); + __android_log_write(ANDROID_LOG_DEBUG, log_tag, msg); +} + + +#define DEBUGF debugf +#define TRACE debug_trace(__func__) +#else +#define DEBUGF(...) +#define TRACE +#endif /* DEBUG */ -#define KEYCODE_HEADPHONES 114 -#define KEYCODE_HOLD 115 -#define KEYCODE_PWR 116 -#define KEYCODE_PWR_LONG 117 -#define KEYCODE_SD 143 -#define KEYCODE_VOLPLUS 158 -#define KEYCODE_VOLMINUS 159 -#define KEYCODE_PREV 160 -#define KEYCODE_NEXT 162 -#define KEYCODE_PLAY 161 +/*- Vold monitor --------------------------------------------------------------------------------*/ -#define KEY_HOLD_OFF 16 -void checktime() +/* + Without this socket iBasso Vold will not start. + iBasso Vold uses this to send status messages about storage devices. +*/ +static const char VOLD_MONITOR_SOCKET_NAME[] = "UNIX_domain"; +static int _vold_monitor_socket_fd = -1; + + +static void vold_monitor_open_socket(void) { - time_t t_stored=0, t_current=time(NULL); + TRACE; + + unlink(VOLD_MONITOR_SOCKET_NAME); + + _vold_monitor_socket_fd = socket(AF_UNIX, SOCK_STREAM, 0); - FILE *f = fopen(TIME_FILE, "r"); - if(f!=NULL) + if(_vold_monitor_socket_fd < 0) { - fscanf(f, "%ld", &t_stored); - fclose(f); + _vold_monitor_socket_fd = -1; + return; } - printf("stored time: %ld, current time: %ld\n", t_stored, t_current); - - if(t_storedd_name[0] == '.' && - (de->d_name[1] == '\0' || - (de->d_name[1] == '.' && de->d_name[2] == '\0'))) - continue; - strcpy(filename, de->d_name); - open_device(devname, print_flags); + pthread_create(&_vold_monitor_thread, NULL, vold_monitor_run, NULL); } - closedir(dir); - return 0; } - -void button_init_device(void) +static void vold_monitor_stop(void) { - int res; - int print_flags = 0; - const char *device = NULL; - const char *device_path = "/dev/input"; - - nfds = 1; - ufds = calloc(1, sizeof(ufds[0])); - ufds[0].fd = inotify_init(); - ufds[0].events = POLLIN; - if(device) - { - res = open_device(device, print_flags); - if(res < 0) { - fprintf(stderr, "open device failed\n"); - } - } - else + TRACE; + + if(_vold_monitor_active == 1) { - res = inotify_add_watch(ufds[0].fd, device_path, IN_DELETE | IN_CREATE); - if(res < 0) - { - fprintf(stderr, "could not add watch for %s, %s\n", device_path, strerror(errno)); - } - res = scan_dir(device_path, print_flags); - if(res < 0) - { - fprintf(stderr, "scan dir failed for %s\n", device_path); - } + _vold_monitor_active = 0; + int ret = pthread_join(_vold_monitor_thread, NULL); + DEBUGF("DEBUG %s: Thread joined: ret: %d.", __func__, ret); } } -int draw() +/*- Input handler -------------------------------------------------------------------------------*/ + + +/* Input devices monitored with poll API. */ +static struct pollfd* _fds = NULL; + + +/* Number of input devices monitored with poll API. */ +static nfds_t _nfds = 0; + + +/* The names of the devices in _fds. */ +static char** _device_names = NULL; + + +/* Open device device_name and add it to the list of polled devices. */ +static void open_device(const char* device_name) { - int fbfd = 0; - struct fb_var_screeninfo vinfo; - struct fb_fix_screeninfo finfo; - long int screensize = 0; - char *fbp = 0; - int x = 0, y = 0; - long int location = 0; - - /* Open the file for reading and writing */ - fbfd = open("/dev/graphics/fb0", O_RDWR); - if (fbfd == -1) + int fd = open(device_name, O_RDONLY); + if(fd == -1) { - perror("Error: cannot open framebuffer device"); - exit(1); + DEBUGF("ERROR %s: open failed on %s.", __func__, device_name); + exit(-1); } - /* Get fixed screen information */ - if (ioctl(fbfd, FBIOGET_FSCREENINFO, &finfo) == -1) + + struct pollfd* new_fds = realloc(_fds, sizeof(struct pollfd) * (_nfds + 1)); + if(new_fds == NULL) { - perror("Error reading fixed information"); - exit(2); + DEBUGF("ERROR %s: realloc for _fds failed.", __func__); + exit(-1); } - /* Get variable screen information */ - if (ioctl(fbfd, FBIOGET_VSCREENINFO, &vinfo) == -1) + _fds = new_fds; + _fds[_nfds].fd = fd; + _fds[_nfds].events = POLLIN; + + char** new_device_names = realloc(_device_names, sizeof(char*) * (_nfds + 1)); + if(new_device_names == NULL) { - perror("Error reading variable information"); - exit(3); + DEBUGF("ERROR %s: realloc for _device_names failed.", __func__); + exit(-1); } - /* Figure out the size of the screen in bytes */ - screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8; - - vinfo.xres = vinfo.xres_virtual = vinfo.width = 320; - vinfo.yres = vinfo.yres_virtual = vinfo.height = 240; - vinfo.xoffset = vinfo.yoffset = vinfo.sync = vinfo.vmode = 0; - vinfo.pixclock = 104377; - vinfo.left_margin = 20; - vinfo.right_margin = 50; - vinfo.upper_margin = 2; - vinfo.lower_margin = 4; - vinfo.hsync_len = 10; - vinfo.vsync_len = 2; - vinfo.red.offset = 11; - vinfo.red.length = 5; - vinfo.red.msb_right = 0; - vinfo.green.offset = 5; - vinfo.green.length = 6; - vinfo.green.msb_right = 0; - vinfo.blue.offset = 0; - vinfo.blue.length = 5; - vinfo.blue.msb_right = 0; - vinfo.transp.offset = vinfo.transp.length = vinfo.transp.msb_right = 0; - vinfo.nonstd = 4; - - if (ioctl(fbfd, FBIOPUT_VSCREENINFO, &vinfo)) + _device_names = new_device_names; + _device_names[_nfds] = strdup(device_name); + if(_device_names[_nfds] == NULL) { - perror("fbset(ioctl)"); - exit(4); + DEBUGF("ERROR %s: strdup failed.", __func__); + exit(-1); } + ++_nfds; - /* Map the device to memory */ - fbp = (char *)mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED, - fbfd, 0); - if ((int)fbp == -1) + DEBUGF("DEBUG %s: Opened device %s.", __func__, device_name); +} + + +static void button_init_device(void) +{ + TRACE; + + if((_fds != NULL) || (_nfds != 0) || (_device_names != NULL)) { - perror("Error: failed to map framebuffer device to memory"); - exit(4); + DEBUGF("ERROR %s: Allready initialized.", __func__); + return; } - BMP* bmp = BMP_ReadFile("/system/rockbox/chooser.bmp"); - BMP_CHECK_ERROR( stderr, -1 ); + /* The input device directory. */ + static const char device_path[] = "/dev/input"; - UCHAR r, g, b; - unsigned short int t; + /* Path delimeter. */ + static const char delimeter[] = "/"; - for (y = 0; y < 240; y++) - for (x = 0; x < 320; x++) - { - location = (x+vinfo.xoffset) * (vinfo.bits_per_pixel/8) + - (y+vinfo.yoffset) * finfo.line_length; + /* Open all devices in device_path. */ + DIR* dir = opendir(device_path); + if(dir == NULL) + { + DEBUGF("ERROR %s: opendir failed: errno: %d.", __func__, errno); + exit(errno); + } - BMP_GetPixelRGB(bmp, x, y, &r, &g, &b); - t = (r>>3)<<11 | (g>>2) << 5 | (b>>3); - *((unsigned short int*)(fbp + location)) = t; + char device_name[PATH_MAX]; + strcpy(device_name, device_path); + strcat(device_name, delimeter); + char* device_name_idx = device_name + strlen(device_name); + + struct dirent* dir_entry; + while((dir_entry = readdir(dir))) + { + if( ((dir_entry->d_name[0] == '.') && (dir_entry->d_name[1] == '\0')) + || ((dir_entry->d_name[0] == '.') && (dir_entry->d_name[1] == '.') && (dir_entry->d_name[2] == '\0'))) + { + continue; } - BMP_Free( bmp ); + strcpy(device_name_idx, dir_entry->d_name); - munmap(fbp, screensize); - close(fbfd); - return 0; + /* Open and add device to _fds. */ + open_device(device_name); + } + + closedir(dir); + + /* Sanity check. */ + if(_nfds < 2) + { + DEBUGF("ERROR %s: No input devices.", __func__); + exit(-1); + } } -int choose_player() +#define EVENT_TYPE_BUTTON 1 + + +#define EVENT_CODE_BUTTON_PWR_LONG 117 +#define EVENT_CODE_BUTTON_REV 160 +#define EVENT_CODE_BUTTON_NEXT 162 + + +#define EVENT_TYPE_TOUCHSCREEN 3 + + +#define EVENT_CODE_TOUCHSCREEN_X 53 + + +enum user_choice { - int i; - int res; - struct input_event event; + CHOICE_NONE = -1, + CHOICE_MANGO, + CHOICE_ROCKBOX, + CHOICE_POWEROFF +}; - while(true) + +static int get_user_choice(void) +{ + TRACE; + + button_init_device(); + + enum user_choice choice = CHOICE_NONE; + + while(choice == CHOICE_NONE) { - poll(ufds, nfds, POLL_MS); - for(i = 1; i < nfds; i++) + /* Poll all input devices. */ + poll(_fds, _nfds, 0); + + nfds_t fds_idx = 0; + for( ; fds_idx < _nfds; ++fds_idx) { - if(ufds[i].revents & POLLIN) + if(! (_fds[fds_idx].revents & POLLIN)) { - res = read(ufds[i].fd, &event, sizeof(event)); - if(res < (int)sizeof(event)) - { - fprintf(stderr, "could not get event\n"); - } - if(event.type==1) + continue; + } + + struct input_event event; + if(read(_fds[fds_idx].fd, &event, sizeof(event)) < (int) sizeof(event)) + { + DEBUGF("ERROR %s: Read of input devices failed.", __func__); + continue; + } + + DEBUGF("DEBUG %s: device: %s, event.type: %d, event.code: %d, event.value: %d", __func__, _device_names[fds_idx], event.type, event.code, event.value); + + if(event.type == EVENT_TYPE_BUTTON) + { + switch(event.code) { - if(event.code==KEYCODE_NEXT) + case EVENT_CODE_BUTTON_REV: { - puts("rockbox!"); - return 1; + choice = CHOICE_MANGO; + break; } - else if(event.code==KEYCODE_PREV) + + case EVENT_CODE_BUTTON_NEXT: { - puts("mango!"); - return 0; + choice = CHOICE_ROCKBOX; + break; } - else if(event.code==KEYCODE_PWR || event.code==KEYCODE_PWR_LONG) + + case EVENT_CODE_BUTTON_PWR_LONG: { - reboot(LINUX_REBOOT_CMD_POWER_OFF); + choice = CHOICE_POWEROFF; + break; } } - else if(event.type==3) + } + else if((event.type == EVENT_TYPE_TOUCHSCREEN) && (event.code == EVENT_CODE_TOUCHSCREEN_X)) + { + if(event.value < 160) { - if(event.code==53) //x coord - { - if(event.value<160) - { - puts("mango!"); - return 0; - } - else - { - puts("rockbox!"); - return 1; - } - } + choice = CHOICE_MANGO; + } + else + { + choice = CHOICE_ROCKBOX; } } } } - return true; + + if(_fds) + { + nfds_t fds_idx = 0; + for( ; fds_idx < _nfds; ++fds_idx) + { + close(_fds[fds_idx].fd); + } + free(_fds); + _fds = NULL; + } + + if(_device_names) + { + nfds_t fds_idx = 0; + for( ; fds_idx < _nfds; ++fds_idx) + { + free(_device_names[fds_idx]); + } + free(_device_names); + _device_names = NULL; + } + + _nfds = 0; + + return choice; } -bool check_for_hold() + +/* + Changing bit, when hold switch is toggled. + Bit is off when hold switch is engaged. +*/ +#define HOLD_SWITCH_BIT 16 + + +static bool check_for_hold(void) { - FILE *f = fopen("/sys/class/axppower/holdkey", "r"); - char x; - fscanf(f, "%c", &x); + TRACE; + + char hold_state; + + FILE* f = fopen("/sys/class/axppower/holdkey", "r"); + fscanf(f, "%c", &hold_state); fclose(f); - if(x & KEY_HOLD_OFF) - return false; - else - return true; + return(! (hold_state & HOLD_SWITCH_BIT)); } + +/*- Display -------------------------------------------------------------------------------------*/ + + +static void draw(const char* file) +{ + DEBUGF("DEBUG %s: file: %s.", __func__, file); + + int dev_fd = open("/dev/graphics/fb0", O_RDWR); + if(dev_fd == -1) + { + DEBUGF("ERROR %s: open failed on /dev/graphics/fb0, errno: %d.", __func__, errno); + exit(errno); + } + + /* Get fixed screen information. */ + struct fb_fix_screeninfo finfo; + if(ioctl(dev_fd, FBIOGET_FSCREENINFO, &finfo) < 0) + { + DEBUGF("ERROR %s: ioctl FBIOGET_FSCREENINFO failed on /dev/graphics/fb0, errno: %d.", __func__, errno); + exit(errno); + } + + /* Get the changeable information. */ + struct fb_var_screeninfo vinfo; + if(ioctl(dev_fd, FBIOGET_VSCREENINFO, &vinfo) < 0) + { + DEBUGF("ERROR %s: ioctl FBIOGET_VSCREENINFO failed on /dev/graphics/fb0, errno: %d.", __func__, errno); + exit(errno); + } + + DEBUGF("DEBUG %s: bits_per_pixel: %u, width: %u, height: %u.", __func__, vinfo.bits_per_pixel, vinfo.width, vinfo.height); + + size_t screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8; + + /* ToDo: Is this needed? */ + vinfo.xres = 320; + vinfo.xres_virtual = 320; + vinfo.width = 320; + vinfo.yres = 240; + vinfo.yres_virtual = 240; + vinfo.height = 240; + vinfo.xoffset = 0; + vinfo.yoffset = 0; + vinfo.sync = 0; + vinfo.vmode = 0; + vinfo.pixclock = 104377; + vinfo.left_margin = 20; + vinfo.right_margin = 50; + vinfo.upper_margin = 2; + vinfo.lower_margin = 4; + vinfo.hsync_len = 10; + vinfo.vsync_len = 2; + vinfo.red.offset = 11; + vinfo.red.length = 5; + vinfo.red.msb_right = 0; + vinfo.green.offset = 5; + vinfo.green.length = 6; + vinfo.green.msb_right = 0; + vinfo.blue.offset = 0; + vinfo.blue.length = 5; + vinfo.blue.msb_right = 0; + vinfo.transp.offset = 0; + vinfo.transp.length = 0; + vinfo.transp.msb_right = 0; + vinfo.nonstd = 4; + if(ioctl(dev_fd, FBIOPUT_VSCREENINFO, &vinfo) < 0) + { + DEBUGF("ERROR %s: ioctl FBIOPUT_VSCREENINFO failed on /dev/graphics/fb0, errno: %d.", __func__, errno); + exit(errno); + } + + /* Map the device to memory. */ + char* dev_fb = (char*) mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED, dev_fd, 0); + if(dev_fb == MAP_FAILED) + { + DEBUGF("ERROR %s: mmap failed on /dev/graphics/fb0, errno: %d.", __func__, errno); + exit(errno); + } + + BMP* bmp = BMP_ReadFile(file); + if(BMP_GetError() != BMP_OK ) + { + DEBUGF("ERROR %s: BMP_ReadFile failed on %s: %d.", __func__, file, BMP_GetError()); + exit(BMP_GetError()); + } + + int y = 0; + for( ; y < 240; ++y) + { + int x = 0; + for( ; x < 320; ++x) + { + long int position = (x + vinfo.xoffset) * (vinfo.bits_per_pixel / 8 ) + + (y + vinfo.yoffset) * finfo.line_length; + UCHAR r, g, b; + BMP_GetPixelRGB(bmp, x, y, &r, &g, &b); + unsigned short int pixel = (r >> 3) << 11 | (g >> 2) << 5 | (b >> 3); + *((unsigned short int*)(dev_fb + position)) = pixel; + } + } + + BMP_Free(bmp); + munmap(dev_fb, screensize); + close(dev_fd); +} + + +/*-----------------------------------------------------------------------------------------------*/ + + +static const char ROCKBOX_BIN[] = "/mnt/sdcard/.rockbox/rockbox"; +static const char OF_PLAYER_BIN[] = "/system/bin/MangoPlayer_original"; +static const char PLAYER_FILE[] = "/data/chosen_player"; + + int main(int argc, char **argv) { - FILE *f; - int last_chosen_player = -1; + TRACE; + + /* + Create the iBasso Vold socket and monitor it. + Do this early to not block Vold. + */ + vold_monitor_start(); - f = fopen(PLAYER_FILE, "r"); - if(f!=NULL) + int last_chosen_player = CHOICE_NONE; + + FILE* f = fopen(PLAYER_FILE, "r"); + if(f != NULL) { fscanf(f, "%d", &last_chosen_player); fclose(f); } - bool ask = (access(VOLD_LINK, F_OK) == -1) || ((access(NOASK_FLAG, F_OK) == -1) && check_for_hold()) || (last_chosen_player==-1); - if(ask) + DEBUGF("DEBUG %s: Current player choice: %d.", __func__, last_chosen_player); + + if(check_for_hold() || (last_chosen_player == CHOICE_NONE)) { - draw(); - button_init_device(); - int player_chosen_now = choose_player(); + draw("/system/chooser.bmp"); - if(last_chosen_player!=player_chosen_now) + enum user_choice choice = get_user_choice(); + + if(choice == CHOICE_POWEROFF) { - f = fopen(PLAYER_FILE, "w"); - fprintf(f, "%d", player_chosen_now); - fclose(f); + reboot(RB_POWER_OFF); + while(true) + { + sleep(1); + } } - if(last_chosen_player!=player_chosen_now || (access(VOLD_LINK, F_OK) == -1)) + if(choice != last_chosen_player) { - system("rm "VOLD_LINK); - - if(player_chosen_now) - system("ln -s /system/bin/vold_rockbox "VOLD_LINK); - else - system("ln -s /system/bin/vold_original "VOLD_LINK); + last_chosen_player = choice; - system("touch "NOASK_FLAG); - system("reboot"); + f = fopen(PLAYER_FILE, "w"); + fprintf(f, "%d", last_chosen_player); + fclose(f); } - last_chosen_player = player_chosen_now; + + DEBUGF("DEBUG %s: New player choice: %d.", __func__, last_chosen_player); } - system("rm "NOASK_FLAG); + /* true, Rockbox was started at least once. */ + bool rockboxStarted = false; - while(1) + while(true) { - if(last_chosen_player) + /* Excecute OF MangoPlayer or Rockbox and restart it if it crashes. */ + + if(last_chosen_player == CHOICE_ROCKBOX) { -// system("/system/bin/openadb"); - system("/system/rockbox/lib/rockbox"); + if(rockboxStarted) + { + /* + At this point it is assumed, that Rockbox has exited due to a USB connection + triggering a remount of the internal storage for mass storage access. + Rockbox will eventually restart, when /mnt/sdcard becomes available again. + */ + draw("/system/usb.bmp"); + } + + pthread_mutex_lock(&_sdcard_mount_mtx); + while(_sdcard_not_mounted) + { + DEBUGF("DEBUG %s: Waiting on /mnt/sdcard/.", __func__); + + pthread_cond_wait(&_sdcard_mount_cond, &_sdcard_mount_mtx); + + DEBUGF("DEBUG %s: /mnt/sdcard/ available.", __func__); + } + pthread_mutex_unlock(&_sdcard_mount_mtx); + + /* To be able to execute rockbox. */ + system("mount -o remount,exec /mnt/sdcard"); + + /* This symlink is needed mainly to keep themes functional. */ + system("ln -s /mnt/sdcard/.rockbox /.rockbox"); + + if(access(ROCKBOX_BIN, X_OK) != -1) + { + /* Start Rockbox. */ + + /* Rockbox has its own vold monitor. */ + vold_monitor_stop(); + + DEBUGF("DEBUG %s: Excecuting %s.", __func__, ROCKBOX_BIN); + + int ret_code = system(ROCKBOX_BIN); + rockboxStarted = true; + + DEBUGF("DEBUG %s: ret_code: %d.", __func__, ret_code); + + if(WIFEXITED(ret_code) && (WEXITSTATUS(ret_code) == 42)) + { + /* + Rockbox terminated to prevent a froced shutdown due to a USB connection + triggering a remount of the internal storage for mass storage access. + */ + _sdcard_not_mounted = true; + } + /* else Rockbox crashed ... */ + + vold_monitor_start(); + } + else + { + /* Rockbox executable missing. Show info screen for 30 seconds. */ + draw("/system/rbmissing.bmp"); + sleep(30); + + /* Do not block Vold, so stop after sleep. */ + vold_monitor_stop(); + +#ifdef DEBUG + system("setprop persist.sys.usb.config adb"); + system("setprop persist.usb.debug 1"); +#endif + + DEBUGF("DEBUG %s: Rockbox missing, excecuting %s.", __func__, OF_PLAYER_BIN); + + /* Start OF MangoPlayer. */ + int ret_code = system(OF_PLAYER_BIN); + + DEBUGF("DEBUG %s: ret_code: %d.", __func__, ret_code); + } } - else -// system("/system/bin/closeadb"); - system("/system/bin/MangoPlayer_original"); + else /* if(last_chosen_player == CHOICE_MANGO) */ + { + vold_monitor_stop(); + + DEBUGF("DEBUG %s: Excecuting %s.", __func__, OF_PLAYER_BIN); - sleep(1); + int ret_code = system(OF_PLAYER_BIN); + + DEBUGF("DEBUG %s: ret_code: %d.", __func__, ret_code); + } } return 0; } - - - diff --git a/rbutil/ibassoboot/jni/rbmissing.bmp b/rbutil/ibassoboot/jni/rbmissing.bmp new file mode 100644 index 0000000000..1e97066d8c Binary files /dev/null and b/rbutil/ibassoboot/jni/rbmissing.bmp differ diff --git a/rbutil/ibassoboot/jni/usb.bmp b/rbutil/ibassoboot/jni/usb.bmp new file mode 100644 index 0000000000..c462de2236 Binary files /dev/null and b/rbutil/ibassoboot/jni/usb.bmp differ -- cgit v1.2.3