2008-06-13 01:22:49 +03:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2008-07-25 05:27:23 +03:00
|
|
|
include config.mk
|
2008-06-13 01:22:49 +03:00
|
|
|
|
2008-08-13 02:37:17 +03:00
|
|
|
BUILD_DATE := $(shell date)
|
|
|
|
BUILD_HOST := $(shell hostname)
|
|
|
|
BUILD_BRANCH := $(shell git branch | grep ^\* | cut -d' ' -f2)
|
|
|
|
BUILD_HEAD := $(shell git show --pretty=oneline | head -n1 | cut -d' ' -f1 | cut -b1-16)
|
|
|
|
BUILD_VERSION := ${BUILD_BRANCH}_${BUILD_HEAD}
|
|
|
|
|
2008-07-25 05:27:23 +03:00
|
|
|
LDS = src/kboot-stage1.lds
|
|
|
|
INCLUDE = include
|
|
|
|
IMAGE_DIR = image
|
2008-08-13 02:44:29 +03:00
|
|
|
CFLAGS = -Wall -Werror -I $(INCLUDE) -g -c -O2 -fno-strict-aliasing \
|
|
|
|
-fno-common -ffixed-r8 -msoft-float -fno-builtin -ffreestanding \
|
|
|
|
-march=armv4t -mno-thumb-interwork -Wstrict-prototypes \
|
2008-08-13 02:43:27 +03:00
|
|
|
-DBUILD_HOST="${BUILD_HOST}" -DBUILD_VERSION="${BUILD_VERSION}" \
|
|
|
|
-DBUILD_DATE="${BUILD_DATE}"
|
2008-07-25 05:27:23 +03:00
|
|
|
LDFLAGS =
|
|
|
|
#START = start.o lowlevel_init.o
|
|
|
|
S_SRCS = src/start.S src/lowlevel_init.S
|
|
|
|
S_OBJS = $(patsubst %.S,%.o, $(S_SRCS))
|
|
|
|
C_SRCS = $(wildcard src/*.c)
|
|
|
|
C_OBJS = $(patsubst %.c,%.o, $(C_SRCS))
|
|
|
|
|
|
|
|
#SRCS := $(START: .o=.S) $(COBJS: .o=.c)
|
|
|
|
SRCS = ${S_SRCS} ${C_SRCS}
|
|
|
|
OBJS = ${S_OBJS} ${C_OBJS}
|
2008-08-13 02:35:09 +03:00
|
|
|
LIBS = -L${COMPILER_LIB_PATH} -lgcc
|
2008-07-25 05:27:23 +03:00
|
|
|
|
2008-08-13 02:34:06 +03:00
|
|
|
# GTA02 A5 and A6 U-Boot will eat these for DFU action
|
|
|
|
UDFU_VID = 0x1d50
|
|
|
|
UDFU_PID = 0x5119
|
|
|
|
UDFU_REV = 0x350
|
|
|
|
|
2008-07-25 05:27:23 +03:00
|
|
|
TARGET = src/start_kboot_all
|
2008-08-13 02:34:06 +03:00
|
|
|
IMAGE = $(IMAGE_DIR)/kboot
|
|
|
|
UDFU_IMAGE = $(IMAGE_DIR)/kboot.udfu
|
2008-07-25 05:27:23 +03:00
|
|
|
|
|
|
|
%.o: %.S
|
|
|
|
@$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
@$(CC) $(CFLAGS) -o $@ $<
|
2008-06-13 01:22:49 +03:00
|
|
|
|
2008-08-13 02:34:06 +03:00
|
|
|
all:${UDFU_IMAGE}
|
2008-06-13 01:22:49 +03:00
|
|
|
|
2008-07-25 05:27:23 +03:00
|
|
|
${OBJS}:${SRCS}
|
|
|
|
|
2008-08-13 02:34:06 +03:00
|
|
|
${UDFU_IMAGE}:${OBJS}
|
2008-08-13 02:35:09 +03:00
|
|
|
$(LD) ${LDFLAGS} -T$(LDS) -g $(OBJS) -o ${TARGET} ${LIBS}
|
2008-07-25 05:27:23 +03:00
|
|
|
$(OBJCOPY) -O binary -S ${TARGET} ${IMAGE}
|
2008-08-13 02:34:06 +03:00
|
|
|
$(MKUDFU) -v ${UDFU_VID} -p ${UDFU_PID} -r ${UDFU_REV} \
|
|
|
|
-d ${IMAGE} ${UDFU_IMAGE}
|
2008-07-25 05:27:23 +03:00
|
|
|
$(OBJDUMP) -D ${TARGET} >${IMAGE}.dis
|
|
|
|
|
|
|
|
blink_led:src/led_on.S
|
|
|
|
$(CC) $(CFLAGS) led_on.o led_on.S
|
|
|
|
$(LD) -g led_on.o -o led_on_temp.o
|
|
|
|
$(OBJCOPY) -O binary -S led_on_temp.o $(IMAGE)/led_on
|
|
|
|
|
|
|
|
clean:
|
2008-08-13 02:34:06 +03:00
|
|
|
rm -f src/*.o src/*~ include/*~ ${IMAGE}* ${TARGET} ${UDFU_IMAGE}
|