Changeset fa024ce in mainline for boot/arch/ia64/loader/main.c


Ignore:
Timestamp:
2009-02-12T20:12:08Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
98a4e76
Parents:
fcd7053
Message:

simplify configuration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ia64/loader/main.c

    rfcd7053 rfa024ce  
    11/*
    22 * Copyright (c) 2005 Martin Decky
    3  * Copyright (c) 2006 Jakub Jermar 
     3 * Copyright (c) 2006 Jakub Jermar
    44 * All rights reserved.
    55 *
     
    3434#include <align.h>
    3535#include <balloc.h>
     36#include <macros.h>
    3637
    3738extern bootinfo_t binfo;
    3839component_t components[COMPONENTS];
    3940
    40 char *release = RELEASE;
     41char *release = STRING(RELEASE);
    4142
    4243void write(const char *str, const int len)
     
    5455
    5556#ifdef REVISION
    56         char *revision = ", revision " REVISION;
     57        char *revision = ", revision " STRING(REVISION);
    5758#else
    5859        char *revision = "";
     
    6061
    6162#ifdef TIMESTAMP
    62         char *timestamp = "\nBuilt on " TIMESTAMP;
     63        char *timestamp = "\nBuilt on " STRING(TIMESTAMP);
    6364#else
    6465        char *timestamp = "";
Note: See TracChangeset for help on using the changeset viewer.