Pandora port: Automate rockbox.pnd (=binary archive) build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29991 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6c571361ff
commit
986a92fe66
2 changed files with 28 additions and 1 deletions
22
packaging/pandora/pandora.make
Normal file
22
packaging/pandora/pandora.make
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
PANDORA_DIR=$(ROOTDIR)/packaging/pandora
|
||||||
|
PND_MAKE=/usr/local/angstrom/arm/scripts/pnd_make
|
||||||
|
PND_BUILD_DIR=pnddir
|
||||||
|
|
||||||
|
pnddir:
|
||||||
|
mkdir $(PND_BUILD_DIR)
|
||||||
|
|
||||||
|
pnd: pnddir $(PND_MAKE) $(DEPFILE) build
|
||||||
|
# Creating PND file
|
||||||
|
make PREFIX=$(PND_BUILD_DIR)/rockbox fullinstall
|
||||||
|
|
||||||
|
# Install Pandora build files
|
||||||
|
cp $(PANDORA_DIR)/PXML.xml $(PND_BUILD_DIR)
|
||||||
|
cp $(PANDORA_DIR)/rockbox.png $(PND_BUILD_DIR)
|
||||||
|
cp $(PANDORA_DIR)/rockbox_preview.jpg $(PND_BUILD_DIR)
|
||||||
|
cp $(PANDORA_DIR)/run_rockbox.sh $(PND_BUILD_DIR)
|
||||||
|
|
||||||
|
# Add docs folder
|
||||||
|
cp -rf $(ROOTDIR)/docs $(PND_BUILD_DIR)
|
||||||
|
|
||||||
|
# Invoke pndmake
|
||||||
|
$(PND_MAKE) -p rockbox.pnd -d $(PND_BUILD_DIR) -x $(PND_BUILD_DIR)/PXML.xml -i $(PND_BUILD_DIR)/rockbox.png -c
|
|
@ -105,7 +105,11 @@ else
|
||||||
ifneq (,$(findstring android, $(APP_TYPE)))
|
ifneq (,$(findstring android, $(APP_TYPE)))
|
||||||
include $(ROOTDIR)/android/android.make
|
include $(ROOTDIR)/android/android.make
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq (,$(findstring pandora, $(MODELNAME)))
|
||||||
|
include $(ROOTDIR)/packaging/pandora/pandora.make
|
||||||
|
endif
|
||||||
|
|
||||||
endif # bootloader
|
endif # bootloader
|
||||||
|
|
||||||
OBJ := $(SRC:.c=.o)
|
OBJ := $(SRC:.c=.o)
|
||||||
|
@ -341,6 +345,7 @@ help:
|
||||||
@echo "fontzip - creates rockbox-fonts.zip"
|
@echo "fontzip - creates rockbox-fonts.zip"
|
||||||
@echo "mapzip - creates rockbox-maps.zip with all .map files"
|
@echo "mapzip - creates rockbox-maps.zip with all .map files"
|
||||||
@echo "elfzip - creates rockbox-elfs.zip with all .elf files"
|
@echo "elfzip - creates rockbox-elfs.zip with all .elf files"
|
||||||
|
@echo "pnd - creates rockbox.pnd archive (Pandora builds only)"
|
||||||
@echo "tools - builds the tools only"
|
@echo "tools - builds the tools only"
|
||||||
@echo "voice - creates the voice clips (voice builds only)"
|
@echo "voice - creates the voice clips (voice builds only)"
|
||||||
@echo "voicetools - builds the voice tools only"
|
@echo "voicetools - builds the voice tools only"
|
||||||
|
|
Loading…
Reference in a new issue