git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22432 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2009-08-19 22:15:45 +00:00
parent 4f87976677
commit 47608e06b3
11 changed files with 19 additions and 3 deletions

View file

@ -30,6 +30,7 @@
#include "lcd.h"
#include "font.h"
#include "file.h"
#include "menu.h"
#include "button.h"
#include "kernel.h"

View file

@ -34,6 +34,7 @@
#include "button.h"
#include "string.h"
#include "usb.h"
#include "file.h"
/* TODO: Other bootloaders need to be adjusted to set this variable to true
on a button press - currently only the ipod, H10 and Sansa versions do. */

View file

@ -18,6 +18,7 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "cpu.h"

View file

@ -25,6 +25,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "cpu.h"
#include "lcd.h"

View file

@ -18,6 +18,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "cpu.h"
#include "lcd.h"

View file

@ -18,6 +18,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "cpu.h"
#include "lcd.h"

View file

@ -18,6 +18,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "system.h"
#include "cpu.h"

View file

@ -18,6 +18,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "cpu.h"
#include "lcd.h"

View file

@ -18,8 +18,9 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "config.h"
#include <sys/types.h>
#include "config.h"
#include "hwcompat.h"
#include "kernel.h"
#include "lcd.h"

View file

@ -18,7 +18,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <sys/types.h>
#include "config.h"
#include "jz4740.h"
#include "lcd.h"

View file

@ -23,7 +23,8 @@
#include "lcd.h"
#include "lcd-charcell.h"
#include "screendump.h"
#include "general.h"
#include "general.h"
#include "file.h"
#include <string.h>
#include <unistd.h>
#include <fcntl.h>