[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[microblaze-uclinux] Proposed makefile fix
Hi everyone,
I wanted to suggest a fix to the makefile for mbvanilla. It currently
drops the image files into /tftpboot. My sysadmin won't let me write
there, so I went to change the TFTPDIR variable in the main makefile
(under uClinux-dist). Unfortunately, the mbvanilla makefile has /tftpboot
hardcoded.
Change lines 153-154 in
uClinux-dist/vendors/Insight/mbvanilla_net/Makefile from:
[ -n "$(NO_BUILD_INTO_TFTPBOOT)" ] || cp $(IMAGE) /tftpboot
[ -n "$(NO_BUILD_INTO_TFTPBOOT)" ] || cp $(IMAGEZ) /tftpboot
To:
[ -n "$(NO_BUILD_INTO_TFTPBOOT)" ] || cp $(IMAGE) $(TFTPDIR)
[ -n "$(NO_BUILD_INTO_TFTPBOOT)" ] || cp $(IMAGEZ) $(TFTPDIR)
-- Brent
___________________________
microblaze-uclinux mailing list
microblaze-uclinux@itee.uq.edu.au
Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux
Mailing List Archive : http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/