0c1a96101c
The new code gets closer to an actual bootloader: - it provides a menu with three options: Sony, Rockox, tools with icons (and extracts the Sony logo from the NVP) - the dualboot install script now creates a symlink from /.rockbox to /contents/.rockox which is necessary to run rockbox - more text drawing / framebuffer functions In the long run, we will move this under bootloader/ and rbutil/ and also use firmware/ drawing facilities, at the moment we use OF display program which is slow and creates some flickering. The logo extraction/placement code was tested with resolution 240x320 and I guessed some reasonable values for 240x400, but those will probably need some tweaking. Change-Id: I0319be902d21a7d33c1dee0fffdb4797065dbf8a
8 lines
128 B
Makefile
8 lines
128 B
Makefile
TOOLS_DIR=../../../../tools/
|
|
all: rockbox_icon.h tools_icon.h
|
|
|
|
%.h: %.bmp
|
|
$(TOOLS_DIR)/bmp2rb -f 4 $^ > $@
|
|
|
|
clean:
|
|
rm -rf *.h
|