Date:2010-08-23 07:46:22 (13 years 7 months ago)
Author:Werner Almesberger
Commit:d6b045c5137f23cfb560b81eefc58843ac205bd3
Message:Renamed fw/boot/ to fw/atspi-boot/. Fixed build problem in fw/atspi-boot/.

- fw/Makefile, fw/boot/Makefile: renamed fw/boot/ to fw/atspi-boot/
- fw/atspi-boot/Makefile: added -I../include to CFLAGS, so that we find
usb-ids.h
Files: fw/Makefile (1 diff)
fw/atspi-boot/Makefile (1 diff)
fw/boot/Makefile (1 diff)

Change Details

fw/Makefile
1111#
1212
1313
14DIRS=common boot atspi
14DIRS=common atspi-boot atspi
1515
1616
1717.PHONY: all depend install uninstall clean spotless
fw/atspi-boot/Makefile
1#
2# atspi-boot/Makefile - Makefile for DFU-capable boot loader for ATSPI
3#
4# Written 2008, 2010 by Werner Almesberger
5# Copyright 2008, 2010 Werner Almesberger
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12
13MAIN=boot
14OBJS=$(MAIN) usb dfu version
15
16F32XBASE = ../../../f32xbase
17
18include $(F32XBASE)/fw/common/Makefile.system
19include $(F32XBASE)/fw/common/Makefile.common
20
21CFLAGS += -I../common -I../include
22LDFLAGS += --code-size $(PAYLOAD_START)
fw/boot/Makefile
1#
2# boot/Makefile - Makefile for DFU-capable boot loader
3#
4# Written 2008, 2010 by Werner Almesberger
5# Copyright 2008, 2010 Werner Almesberger
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12
13MAIN=boot
14OBJS=$(MAIN) usb dfu version
15
16F32XBASE = ../../../f32xbase
17
18include $(F32XBASE)/fw/common/Makefile.system
19include $(F32XBASE)/fw/common/Makefile.common
20
21CFLAGS += -I../common
22LDFLAGS += --code-size $(PAYLOAD_START)

Archive Download the corresponding diff file



interactive