forked from len0rd/rockbox
Separate loading out into its own routine with a file name parameter in preparation for multiboot support. Change-Id: Ic651e9fa7738ea97789e4a9669834c4e3ef22d66
52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2021-2022 Aidan MacDonald
|
|
*
|
|
* 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "x1000bootloader.h"
|
|
#include "core_alloc.h"
|
|
#include "system.h"
|
|
#include "kernel.h"
|
|
#include "power.h"
|
|
#include "boot-x1000.h"
|
|
|
|
void boot_rockbox(void)
|
|
{
|
|
size_t length;
|
|
int handle = load_rockbox(BOOTFILE, &length);
|
|
if(handle < 0)
|
|
return;
|
|
|
|
gui_shutdown();
|
|
x1000_boot_rockbox(core_get_data(handle), length);
|
|
}
|
|
|
|
void shutdown(void)
|
|
{
|
|
splash(HZ, "Shutting down");
|
|
power_off();
|
|
while(1);
|
|
}
|
|
|
|
void reboot(void)
|
|
{
|
|
splash(HZ, "Rebooting");
|
|
system_reboot();
|
|
while(1);
|
|
}
|