summaryrefslogtreecommitdiff
path: root/utils/themeeditor/models/parsetreenode.cpp
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2013-01-24 13:04:57 +0100
committerMarcin Bukat <marcin.bukat@gmail.com>2013-01-24 13:04:57 +0100
commit02a90890343a75ca71169f601605613607e450ea (patch)
tree54c4d70aecd3ac2692dbd83584d8188c55c4299d /utils/themeeditor/models/parsetreenode.cpp
parentd118f47d24a1791e4d97b7c09cc1188fab0d880e (diff)
downloadrockbox-02a90890343a75ca71169f601605613607e450ea.zip
rockbox-02a90890343a75ca71169f601605613607e450ea.tar.gz
rockbox-02a90890343a75ca71169f601605613607e450ea.tar.bz2
rockbox-02a90890343a75ca71169f601605613607e450ea.tar.xz
PP: Do not use ATA DMA in bootloader
The build of bootloader with HAVE_ATA_DMA fails because of missing commit_discard_dcache(). This seems to be bigger problem as bootloader builds don't call cache_init() also which seems wrong. but I know too little about the PP platform to judge. For now use ATA DMA only in regular builds. Change-Id: I82873cb1771f5a95ebfbef91ce26744e3abd743c
Diffstat (limited to 'utils/themeeditor/models/parsetreenode.cpp')
0 files changed, 0 insertions, 0 deletions
($(strip $(BMP2RB_REMOTENATIVE)),) PBMP += $(call preprocess, $(APPSDIR)/plugins/bitmaps/remote_native/SOURCES) endif ifdef PBMP # does player use bitmaps? PLUGIN_BITMAPS := $(PBMP:$(ROOTDIR)/%.bmp=$(BUILDDIR)/%.o) PLUGINBITMAPLIB := $(BUILDDIR)/apps/plugins/bitmaps/libpluginbitmaps.a PLUGINBITMAPDIR := $(dir $(PLUGINBITMAPLIB)) PBMPHFILES := $(subst $(ROOTDIR),$(BUILDDIR),$(PBMP)) PBMPHFILES := $(shell echo $(PBMPHFILES) | sed -e 's/\.[0-9x]\+\.bmp/.h/g' -e 's/\.bmp/.h/g' -e 's/apps\/plugins\/bitmaps\/\(mono\|native\|remote_mono\|remote_native\)/pluginbitmaps/g') $(PBMPHFILES): $(PLUGIN_BITMAPS) $(PLUGINBITMAPLIB): $(PLUGIN_BITMAPS) $(SILENT)$(shell rm -f $@) $(call PRINTS,AR $(@F))$(AR) rs $@ $+ >/dev/null 2>&1 # pattern rules to create .c files from .bmp, one for each subdir: $(BUILDDIR)/apps/plugins/bitmaps/mono/%.c: $(ROOTDIR)/apps/plugins/bitmaps/mono/%.bmp $(TOOLSDIR)/bmp2rb $(SILENT)mkdir -p $(dir $@) $(PBMPINCDIR) $(call PRINTS,BMP2RB $(<F))$(BMP2RB_MONO) -h $(PBMPINCDIR) $< > $@ $(BUILDDIR)/apps/plugins/bitmaps/native/%.c: $(ROOTDIR)/apps/plugins/bitmaps/native/%.bmp $(TOOLSDIR)/bmp2rb $(SILENT)mkdir -p $(dir $@) $(PBMPINCDIR) $(call PRINTS,BMP2RB $(<F))$(BMP2RB_NATIVE) -h $(PBMPINCDIR) $< > $@ $(BUILDDIR)/apps/plugins/bitmaps/remote_mono/%.c: $(ROOTDIR)/apps/plugins/bitmaps/remote_mono/%.bmp $(TOOLSDIR)/bmp2rb $(SILENT)mkdir -p $(dir $@) $(PBMPINCDIR) $(call PRINTS,BMP2RB $(<F))$(BMP2RB_REMOTEMONO) -h $(PBMPINCDIR) $< > $@ $(BUILDDIR)/apps/plugins/bitmaps/remote_native/%.c: $(ROOTDIR)/apps/plugins/bitmaps/remote_native/%.bmp $(TOOLSDIR)/bmp2rb $(SILENT)mkdir -p $(dir $@) $(PBMPINCDIR) $(call PRINTS,BMP2RB $(<F))$(BMP2RB_REMOTENATIVE) -h $(PBMPINCDIR) $< > $@ endif