Skip to content

Commit

Permalink
m68knommu: remove the unused bootlogo.h processing for 68EZ328 and 68…
Browse files Browse the repository at this point in the history
…VZ328

The 68EZ328 and 68VZ328 platforms currently try to process their bootlogo.h
to make it clean to include in asm files. This is no longer used, the
bootlogo.h file is now included only in C code, so remove all the processing
code in the 68EZ328 and 68VZ328 Makefiles.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Greg Ungerer committed Apr 16, 2012
1 parent e816b57 commit acb0c7a
Showing 2 changed files with 2 additions and 13 deletions.
6 changes: 0 additions & 6 deletions arch/m68k/platform/68EZ328/Makefile
Original file line number Diff line number Diff line change
@@ -3,9 +3,3 @@
#

obj-y := config.o

extra-y := bootlogo.rh

$(obj)/bootlogo.rh: $(src)/bootlogo.h
perl $(src)/../68328/bootlogo.pl < $(src)/bootlogo.h \
> $(obj)/bootlogo.rh
9 changes: 2 additions & 7 deletions arch/m68k/platform/68VZ328/Makefile
Original file line number Diff line number Diff line change
@@ -3,14 +3,9 @@
#

obj-y := config.o
logo-$(UCDIMM) := bootlogo.rh
logo-$(DRAGEN2) := screen.h
extra-y := $(logo-y)

$(obj)/bootlogo.rh: $(src)/../68EZ328/bootlogo.h
perl $(src)/bootlogo.pl < $(src)/../68328/bootlogo.h > $(obj)/bootlogo.rh
extra-$(DRAGEN2):= screen.h

$(obj)/screen.h: $(src)/screen.xbm $(src)/xbm2lcd.pl
perl $(src)/xbm2lcd.pl < $(src)/screen.xbm > $(obj)/screen.h

clean-files := $(obj)/screen.h $(obj)/bootlogo.rh
clean-files := $(obj)/screen.h

0 comments on commit acb0c7a

Please sign in to comment.