FreeCalypso > hg > freecalypso-tools
view loadtools/Makefile @ 718:098fea21ba13
doc/Host-tools-overview: tiffs-mkfs description updated
The first version of tiffs-mkfs did not include a journal file in the created
FFS, expecting the firmware to create it on first boot. All historical
firmwares prior to a recent FC fix (2020-05) contain a bug in that code path,
thus images made with the first version of tiffs-mkfs were only acceptable to
very recent FC firmwares. tiffs-mkfs has now been extended to include an empty
journal in the created FFS, thus the restriction of working with recent fw only
has been lifted.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 23 Aug 2020 04:55:02 +0000 |
parents | a167d7b376b7 |
children | 0bbe0213812d |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fc-iram fc-loadtool fc-xram fc-compalram fc-buzplay fc-dspromdump INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin INSTCONF=${INSTALL_PREFIX}/loadtools INSTHELP=${INSTALL_PREFIX}/helpfiles COMPALRAM_OBJS= compalload.o compalram.o defpath.o ttypassthru.o IRAM_OBJS= compalload.o defexitstub.o defpath.o flashstubs.o hexdecode.o \ hwparam.o romload.o secondprog.o sertool.o srecreader.o \ ttypassthru.o LOADTOOL_OBJS= compalload.o crc32tab.o defpath.o flashid.o flashops.o \ flcmplboot.o flconf.o fldevs.o flerase.o flmain.o flmisc.o \ flprogbin.o flprogsrec.o flprotreg.o flutil.o hexdecode.o \ hwparam.o labaud.o lacrc32.o ltdispatch.o ltdump.o ltexit.o \ lthelp.o ltmain.o ltmisc.o ltpassthru.o ltscript.o romload.o \ srecreader.o tpinterf.o tpinterf2.o tpinterf3.o tpinterfb.o XRAM_OBJS= chainload.o clmain.o compalload.o crc32tab.o defexitstub.o \ defpath.o flashstubs.o hexdecode.o hwparam.o initscript.o \ labaud.o lacrc32.o romload.o secondprog.o srecreader.o \ tpinterf.o tpinterf2.o tpinterfb.o ttypassthru.o BUZPLAY_OBJS= bpdispatch.o bpmain.o buzplay.o compalload.o defpath.o \ flashstubs.o hexdecode.o hwparam.o labaud.o ltexit.o \ ltpassthru.o romload.o srecreader.o tpinterf.o ROMDUMP_OBJS= compalload.o defpath.o flashstubs.o hexdecode.o hwparam.o \ labaud.o ltexit.o romdump.o romload.o srecreader.o tpinterf.o \ tpinterf2.o LIBPWON= ../libpwon/libpwon.a LIBSERIAL= ../libserial/libserial.a all: ${PROGS} fc-compalram: ${COMPALRAM_OBJS} ${LIBSERIAL} ${CC} ${CFLAGS} -o $@ ${COMPALRAM_OBJS} ${LIBSERIAL} fc-iram: ${IRAM_OBJS} ${LIBPWON} ${LIBSERIAL} ${CC} ${CFLAGS} -o $@ ${IRAM_OBJS} ${LIBPWON} ${LIBSERIAL} fc-loadtool: ${LOADTOOL_OBJS} ${LIBPWON} ${LIBSERIAL} ${CC} ${CFLAGS} -o $@ ${LOADTOOL_OBJS} ${LIBPWON} ${LIBSERIAL} fc-xram: ${XRAM_OBJS} ${LIBPWON} ${LIBSERIAL} ${CC} ${CFLAGS} -o $@ ${XRAM_OBJS} ${LIBPWON} ${LIBSERIAL} fc-buzplay: ${BUZPLAY_OBJS} ${LIBPWON} ${LIBSERIAL} ${CC} ${CFLAGS} -o $@ ${BUZPLAY_OBJS} ${LIBPWON} ${LIBSERIAL} fc-dspromdump: ${ROMDUMP_OBJS} ${LIBPWON} ${LIBSERIAL} ${CC} ${CFLAGS} -o $@ ${ROMDUMP_OBJS} ${LIBPWON} ${LIBSERIAL} install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} mkdir -p ${INSTCONF} install -c -m 644 scripts/* ${INSTCONF} mkdir -p ${INSTHELP} install -c -m 644 loadtool.help ${INSTHELP} clean: rm -f *.o *.out *errs ${PROGS}