100d8ed79b
8k boundary with this program still. text data bss dec hex filename 7925 4 4476 12405 3075 bootiic.out so we have like 293 bytes left before we have to play games. There may be ways to reduce that somewhat, but they start to be very board specific.
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
/*******************************************************************************
|
|
*
|
|
* Filename: main.c
|
|
*
|
|
* Basic entry points for top-level functions
|
|
*
|
|
* Revision information:
|
|
*
|
|
* 20AUG2004 kb_admin initial creation
|
|
* 12JAN2005 kb_admin cosmetic changes
|
|
* 29APR2005 kb_admin modified boot delay
|
|
*
|
|
* BEGIN_KBDD_BLOCK
|
|
* No warranty, expressed or implied, is included with this software. It is
|
|
* provided "AS IS" and no warranty of any kind including statutory or aspects
|
|
* relating to merchantability or fitness for any purpose is provided. All
|
|
* intellectual property rights of others is maintained with the respective
|
|
* owners. This software is not copyrighted and is intended for reference
|
|
* only.
|
|
* END_BLOCK
|
|
*
|
|
* $FreeBSD$
|
|
******************************************************************************/
|
|
|
|
#include "env_vars.h"
|
|
#include "at91rm9200_lowlevel.h"
|
|
#include "loader_prompt.h"
|
|
#include "emac.h"
|
|
#include "lib.h"
|
|
|
|
/*
|
|
* .KB_C_FN_DEFINITION_START
|
|
* int main(void)
|
|
* This global function waits at least one second, but not more than two
|
|
* seconds, for input from the serial port. If no response is recognized,
|
|
* it acts according to the parameters specified by the environment. For
|
|
* example, the function might boot an operating system. Do not return
|
|
* from this function.
|
|
* .KB_C_FN_DEFINITION_END
|
|
*/
|
|
int
|
|
main(void)
|
|
{
|
|
InitEEPROM();
|
|
EMAC_Init();
|
|
LoadBootCommands();
|
|
printf("\n\rKB9202(www.kwikbyte.com)\n\rAuto boot..\n\r");
|
|
if (getc(1) == -1)
|
|
ExecuteEnvironmentFunctions();
|
|
Bootloader(0);
|
|
|
|
return (1);
|
|
}
|