[aadk-commits] dbailey: u-boot/trunk r283 - in
/u-boot/trunk/u-boot_1.1.3: include/configs/ ...
aadk-commits at lists.digium.com
aadk-commits at lists.digium.com
Thu Mar 29 14:59:59 MST 2007
Author: dbailey
Date: Thu Mar 29 16:59:59 2007
New Revision: 283
URL: http://svn.digium.com/view/aadk?view=rev&rev=283
Log:
change u-boot to get its prompt text from a board id header file
Added:
u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h (with props)
Removed:
u-boot/trunk/u-boot_1.1.3/lib_blackfin/board_id.h
Modified:
u-boot/trunk/u-boot_1.1.3/include/configs/s800i.h
u-boot/trunk/u-boot_1.1.3/lib_blackfin/blackfin_board.h
Added: u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h
URL: http://svn.digium.com/view/aadk/u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h?view=auto&rev=283
==============================================================================
--- u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h (added)
+++ u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h Thu Mar 29 16:59:59 2007
@@ -1,0 +1,6 @@
+/*Autogenerated header file*/
+#ifndef __BOARD_ID_H__
+#define __BOARD_ID_H__
+#define VENDOR_ID "Unknown"
+#define CFG_PROMPT ">"
+#endif
Propchange: u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: u-boot/trunk/u-boot_1.1.3/include/configs/board_id.h
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: u-boot/trunk/u-boot_1.1.3/include/configs/s800i.h
URL: http://svn.digium.com/view/aadk/u-boot/trunk/u-boot_1.1.3/include/configs/s800i.h?view=diff&rev=283&r1=282&r2=283
==============================================================================
--- u-boot/trunk/u-boot_1.1.3/include/configs/s800i.h (original)
+++ u-boot/trunk/u-boot_1.1.3/include/configs/s800i.h Thu Mar 29 16:59:59 2007
@@ -1,6 +1,9 @@
#ifndef __CONFIG_S800I_H__
#define __CONFIG_S800I_H__
#define __CONFIG_BF537_H__
+
+/* Pull in config Prompt from ID file */
+#include <configs/board_id.h>
#define CFG_LONGHELP 1
#define CONFIG_BAUDRATE 57600
@@ -152,7 +155,6 @@
/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
#include <cmd_confdefs.h>
-#define CFG_PROMPT "aadk> " /* Monitor Command Prompt */
#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
#define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
#else
Modified: u-boot/trunk/u-boot_1.1.3/lib_blackfin/blackfin_board.h
URL: http://svn.digium.com/view/aadk/u-boot/trunk/u-boot_1.1.3/lib_blackfin/blackfin_board.h?view=diff&rev=283&r1=282&r2=283
==============================================================================
--- u-boot/trunk/u-boot_1.1.3/lib_blackfin/blackfin_board.h (original)
+++ u-boot/trunk/u-boot_1.1.3/lib_blackfin/blackfin_board.h Thu Mar 29 16:59:59 2007
@@ -28,7 +28,7 @@
#ifndef __BLACKFIN_BOARD_H__
#define __BLACKFIN_BOARD_H__
-#include "board_id.h"
+#include <configs/board_id.h>
extern void timer_init(void);
extern void init_IRQ(void);
More information about the aadk-commits
mailing list