1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 10:15:19 +02:00

add-build-stamps.patch

Add git-based versioning

Signed-off-by: Andy Green <andy@openmoko.com>
This commit is contained in:
Andy Green 2008-08-13 00:37:17 +01:00
parent 072c9da010
commit 7143408081
3 changed files with 28 additions and 19 deletions

View File

@ -16,10 +16,16 @@
include config.mk
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}
LDS = src/kboot-stage1.lds
INCLUDE = include
IMAGE_DIR = image
CFLAGS = -Wall -Werror -I $(INCLUDE) -g -c
CFLAGS = -Wall -Werror -I $(INCLUDE) -g -c -DBUILD_HOST="${BUILD_HOST}" -DBUILD_VERSION="${BUILD_VERSION}" -DBUILD_DATE="${BUILD_DATE}"
LDFLAGS =
#START = start.o lowlevel_init.o
S_SRCS = src/start.S src/lowlevel_init.S

View File

@ -23,7 +23,7 @@
#include "blink_led.h"
#include "kboot.h"
#define DEBUG_CONSOLE_UART 2
#define DEBUG_CONSOLE_UART UART2
void serial_init (const int ubrdiv_val,const int uart)
{

View File

@ -36,27 +36,30 @@ unsigned char buf[]={
unsigned char buf[2*1024];
#define ADDR ((volatile unsigned *)&buf)
#define stringify(x) #x
int start_kboot(void)
{
port_init();
serial_init(0x11,UART2);
while(1){
serial_putc (UART2,'2');
blue_on(1);
}
port_init();
serial_init(0x11, UART2);
/*2. test nand flash */
if(nand_read_ll(buf, 0x000, sizeof(buf))==-1) {
while(1) {
blink_led();
}
}
while(1) {
serial_putc(2, 'x');
serial_putc(2, 'x');
serial_putc(2, 'x');
printk("Openmoko KBOOT "stringify(BUILD_HOST)" "stringify(BUILD_VERSION)" "stringify(BUILD_DATE)"\n");
blue_on(1);
}
asm volatile("mov pc, %0\n"
: /* output */
:"r"(ADDR) /* input */
);
/*2. test nand flash */
if(nand_read_ll(buf, 0x000, sizeof(buf))==-1)
while(1)
blink_led();
return 0;
asm volatile("mov pc, %0\n"
: /* output */
:"r"(ADDR) /* input */
);
return 0;
}