diff options
author | imp <imp@FreeBSD.org> | 2006-04-19 17:16:49 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-04-19 17:16:49 +0000 |
commit | f65e9cd48e102c804c39d5fc6e1ef308cead6c92 (patch) | |
tree | a98ee56083fbc0be6ef7ccbffa5fd23a06ac797c /sys/boot/arm/at91/libat91/Makefile | |
parent | b8c014aae747b676e781aecf74fb3c52bf0b9fa6 (diff) | |
download | FreeBSD-src-f65e9cd48e102c804c39d5fc6e1ef308cead6c92.zip FreeBSD-src-f65e9cd48e102c804c39d5fc6e1ef308cead6c92.tar.gz |
MFp4 (checkpoint of work in progress):
o Use a directory layout that is more akin to the i386 boot layout.
o Create a libat91 for library routines that are used by one or more
of the boot loaders.
o Create bootiic for booting from an iic part.
o Create bootspi for booting from an spi part.
o Optimize the size of many of these routines (especially emac.c). Except
for the emac.c optimizations, all these have been tested.
o eliminate the inc directory, libat91 superceeds it.
o Move linker.cfg up a layer to allow it to be shared.
Diffstat (limited to 'sys/boot/arm/at91/libat91/Makefile')
-rw-r--r-- | sys/boot/arm/at91/libat91/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/boot/arm/at91/libat91/Makefile b/sys/boot/arm/at91/libat91/Makefile new file mode 100644 index 0000000..e85fef5 --- /dev/null +++ b/sys/boot/arm/at91/libat91/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +LIB= at91 +INTERNALLIB= +SRCS=at91rm9200_lowlevel.c eeprom.c emac.c env_vars.c getc.c loader_prompt.c \ + p_string.c putchar.c printf.c xmodem.c +NO_MAN= + +.include <bsd.lib.mk> |