diff options
Diffstat (limited to 'lib_sparc')
-rw-r--r-- | lib_sparc/board.c | 6 | ||||
-rw-r--r-- | lib_sparc/config.mk | 26 |
2 files changed, 29 insertions, 3 deletions
diff --git a/lib_sparc/board.c b/lib_sparc/board.c index 628d46d..d40834b 100644 --- a/lib_sparc/board.c +++ b/lib_sparc/board.c @@ -28,7 +28,7 @@ #include <common.h> #include <command.h> #include <malloc.h> -#include <devices.h> +#include <stdio_dev.h> #include <config.h> #if defined(CONFIG_CMD_IDE) #include <ide.h> @@ -402,8 +402,8 @@ void board_init_f(ulong bootflag) pci_init(); #endif - /* Initialize devices */ - devices_init(); + /* Initialize stdio devices */ + stdio_init(); /* Initialize the jump table for applications */ jumptable_init(); diff --git a/lib_sparc/config.mk b/lib_sparc/config.mk new file mode 100644 index 0000000..07b528c --- /dev/null +++ b/lib_sparc/config.mk @@ -0,0 +1,26 @@ +# +# (C) Copyright 2007 +# Daniel Hellstrom, Gaisler Research, daniel@gaisler.com +# +# See file CREDITS for list of people who contributed to this +# project. +# +# 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 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +CROSS_COMPILE ?= sparc-elf- + +PLATFORM_CPPFLAGS += -DCONFIG_SPARC -D__sparc__ |