2005-03-08 18:53:11 +00: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, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2005-04-12 16:48:45 +00:00
|
|
|
#include "etherboot.h"
|
|
|
|
#include "dev.h"
|
|
|
|
#include "console.h"
|
2005-05-17 13:33:49 +00:00
|
|
|
#include "image.h"
|
2005-04-18 11:00:42 +00:00
|
|
|
|
|
|
|
#include "config/general.h"
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
/*
|
|
|
|
* Build ID string calculations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#undef XSTR
|
|
|
|
#undef STR
|
|
|
|
#define XSTR(s) STR(s)
|
|
|
|
#define STR(s) #s
|
|
|
|
|
2005-03-08 18:53:11 +00:00
|
|
|
#ifdef BUILD_SERIAL
|
2005-04-18 12:43:18 +00:00
|
|
|
#include "config/.buildserial.h"
|
2005-04-18 12:45:31 +00:00
|
|
|
#define BUILD_SERIAL_STR " #" XSTR(BUILD_SERIAL_NUM)
|
2005-04-18 12:43:18 +00:00
|
|
|
#else
|
|
|
|
#define BUILD_SERIAL_STR ""
|
2005-03-08 18:53:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef BUILD_ID
|
2005-04-18 12:45:31 +00:00
|
|
|
#define BUILD_ID_STR " " BUILD_ID
|
2005-04-18 12:43:18 +00:00
|
|
|
#else
|
|
|
|
#define BUILD_ID_STR ""
|
2005-03-08 18:53:11 +00:00
|
|
|
#endif
|
2005-04-18 12:43:18 +00:00
|
|
|
|
|
|
|
#if defined(BUILD_ID) || defined(BUILD_SERIAL)
|
2005-04-18 12:45:31 +00:00
|
|
|
#define BUILD_STRING " [build" BUILD_ID_STR BUILD_SERIAL_STR "]"
|
2005-04-18 12:43:18 +00:00
|
|
|
#else
|
|
|
|
#define BUILD_STRING ""
|
|
|
|
#endif
|
|
|
|
|
2005-04-08 15:01:17 +00:00
|
|
|
/*
|
|
|
|
* Drag in all requested console types
|
|
|
|
*
|
2005-04-18 11:00:42 +00:00
|
|
|
* CONSOLE_DUAL sets both CONSOLE_FIRMWARE and CONSOLE_SERIAL for
|
|
|
|
* legacy compatibility.
|
2005-04-16 09:35:17 +00:00
|
|
|
*
|
2005-04-08 15:01:17 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
#ifdef CONSOLE_DUAL
|
2005-04-18 11:00:42 +00:00
|
|
|
#undef CONSOLE_FIRMWARE
|
|
|
|
#define CONSOLE_FIRMWARE 1
|
|
|
|
#undef CONSOLE_SERIAL
|
|
|
|
#define CONSOLE_SERIAL 1
|
2005-04-08 15:01:17 +00:00
|
|
|
#endif
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
#ifdef CONSOLE_FIRMWARE
|
2005-04-08 15:01:17 +00:00
|
|
|
REQUIRE_OBJECT ( bios_console );
|
|
|
|
#endif
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
#ifdef CONSOLE_SERIAL
|
2005-04-08 15:01:17 +00:00
|
|
|
REQUIRE_OBJECT ( serial );
|
|
|
|
#endif
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
#ifdef CONSOLE_DIRECT_VGA
|
2005-04-08 15:01:17 +00:00
|
|
|
REQUIRE_OBJECT ( video_subr );
|
|
|
|
#endif
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
#ifdef CONSOLE_BTEXT
|
2005-04-08 15:01:17 +00:00
|
|
|
REQUIRE_OBJECT ( btext );
|
|
|
|
#endif
|
|
|
|
|
2005-04-18 12:43:18 +00:00
|
|
|
#ifdef CONSOLE_PC_KBD
|
2005-04-08 15:01:17 +00:00
|
|
|
REQUIRE_OBJECT ( pc_kbd );
|
|
|
|
#endif
|
|
|
|
|
2005-05-02 11:13:47 +00:00
|
|
|
/*
|
|
|
|
* Drag in all requested protocols
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifdef DOWNLOAD_PROTO_TFTP
|
|
|
|
REQUIRE_OBJECT ( tftp );
|
|
|
|
#endif
|
|
|
|
#ifdef DOWNLOAD_PROTO_NFS
|
|
|
|
REQUIRE_OBJECT ( nfs );
|
|
|
|
#endif
|
|
|
|
#ifdef DOWNLOAD_PROTO_HTTP
|
|
|
|
REQUIRE_OBJECT ( http );
|
|
|
|
#endif
|
|
|
|
#ifdef DOWNLOAD_PROTO_TFTM
|
|
|
|
REQUIRE_OBJECT ( tftm );
|
|
|
|
#endif
|
|
|
|
#ifdef DOWNLOAD_PROTO_SLAM
|
|
|
|
REQUIRE_OBJECT ( slam );
|
|
|
|
#endif
|
|
|
|
|
2005-04-30 14:39:21 +00:00
|
|
|
/*
|
|
|
|
* Drag in any required resolvers
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifdef DNS_RESOLVER
|
2005-04-30 14:49:41 +00:00
|
|
|
REQUIRE_OBJECT ( dns );
|
2005-04-30 14:39:21 +00:00
|
|
|
#endif
|
2005-05-01 10:58:49 +00:00
|
|
|
|
|
|
|
#ifdef NMB_RESOLVER
|
|
|
|
REQUIRE_OBJECT ( nmb );
|
|
|
|
#endif
|
2005-05-17 13:33:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Drag in all requested image formats
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifdef TAGGED_IMAGE
|
|
|
|
REQUIRE_OBJECT ( nbi );
|
|
|
|
#endif
|
|
|
|
#ifdef ELF64_IMAGE
|
|
|
|
REQUIRE_OBJECT ( elf64 );
|
|
|
|
#endif
|
|
|
|
#ifdef ELF_IMAGE
|
|
|
|
REQUIRE_OBJECT ( elf );
|
|
|
|
#endif
|
|
|
|
#ifdef COFF_IMAGE
|
|
|
|
REQUIRE_OBJECT ( coff );
|
|
|
|
#endif
|
|
|
|
#ifdef IMAGE_FREEBSD
|
|
|
|
REQUIRE_OBJECT ( freebsd );
|
|
|
|
#endif
|
|
|
|
#ifdef IMAGE_MULTIBOOT
|
|
|
|
REQUIRE_OBJECT ( multiboot );
|
|
|
|
#endif
|
|
|
|
#ifdef AOUT_IMAGE
|
|
|
|
REQUIRE_OBJECT ( aout );
|
|
|
|
#endif
|
|
|
|
#ifdef WINCE_IMAGE
|
|
|
|
REQUIRE_OBJECT ( wince );
|
|
|
|
#endif
|
|
|
|
#ifdef PXE_IMAGE
|
|
|
|
REQUIRE_OBJECT ( pxe );
|
|
|
|
#endif
|
2006-06-11 01:55:43 +00:00
|
|
|
|
2006-12-20 00:39:06 +00:00
|
|
|
/*
|
|
|
|
* Drag in all requested commands
|
|
|
|
*
|
|
|
|
*/
|
2006-12-20 07:04:08 +00:00
|
|
|
#ifdef BOOT_CMD
|
|
|
|
REQUIRE_OBJECT ( boot_cmd );
|
|
|
|
#endif
|
2006-12-20 00:39:06 +00:00
|
|
|
#ifdef NVO_CMD
|
|
|
|
REQUIRE_OBJECT ( nvo_cmd );
|
|
|
|
#endif
|
2006-12-20 05:37:33 +00:00
|
|
|
#ifdef CONFIG_CMD
|
|
|
|
REQUIRE_OBJECT ( config_cmd );
|
|
|
|
#endif
|
2006-12-20 00:39:06 +00:00
|
|
|
|
2006-06-11 01:55:43 +00:00
|
|
|
/*
|
|
|
|
* Drag in miscellaneous objects
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifdef NULL_TRAP
|
|
|
|
REQUIRE_OBJECT ( nulltrap );
|
|
|
|
#endif
|