Initial fixes to configuration

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2963 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2010-10-03 18:40:51 +00:00
parent f89830bd49
commit 552573ded0
9 changed files with 17 additions and 17 deletions

View File

@ -1,5 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/at91dev1/include/board.h * configs/avr32dev1/include/board.h
* include/arch/board/board.h * include/arch/board/board.h
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# configs/at91dev1/ostest/Make.defs # configs/avr32dev1/ostest/Make.defs
# #
# Copyright (C) 2010 Gregory Nutt. All rights reserved. # Copyright (C) 2010 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr> # Author: Gregory Nutt <spudmonkey@racsa.co.cr>

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# configs/at91dev1/ostest/defconfig # configs/avr32dev1/ostest/defconfig
# #
# Copyright (C) 2010 Gregory Nutt. All rights reserved. # Copyright (C) 2010 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr> # Author: Gregory Nutt <spudmonkey@racsa.co.cr>
@ -72,10 +72,10 @@
CONFIG_ARCH=avr CONFIG_ARCH=avr
CONFIG_ARCH_AVR=y CONFIG_ARCH_AVR=y
CONFIG_ARCH_AVR32=y CONFIG_ARCH_AVR32=y
CONFIG_ARCH_CHIP=at91uc3B0256 CONFIG_ARCH_CHIP=at91uc3
CONFIG_ARCH_CHIP_ATUC3B0256=y CONFIG_ARCH_CHIP_AT91UC3B0256=y
CONFIG_ARCH_BOARD=at91dev1 CONFIG_ARCH_BOARD=avr32dev1
CONFIG_ARCH_BOARD_AT91DEV1=y CONFIG_ARCH_BOARD_AVR32DEV1=y
CONFIG_BOARD_LOOPSPERMSEC=7982 CONFIG_BOARD_LOOPSPERMSEC=7982
CONFIG_DRAM_SIZE=(32*1024) CONFIG_DRAM_SIZE=(32*1024)
CONFIG_DRAM_START=0x10000000 CONFIG_DRAM_START=0x10000000

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* configs/at91dev1/ostest/ld.script * configs/avr32dev1/ostest/ld.script
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <spudmonkey@racsa.co.cr>

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
# configs/at91dev1/ostest/setenv.sh # configs/avr32dev1/ostest/setenv.sh
# #
# Copyright (C) 2010 Gregory Nutt. All rights reserved. # Copyright (C) 2010 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr> # Author: Gregory Nutt <spudmonkey@racsa.co.cr>

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# configs/at91dev1/src/Makefile # configs/avr32dev1/src/Makefile
# #
# Copyright (C) 2010 Gregory Nutt. All rights reserved. # Copyright (C) 2010 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr> # Author: Gregory Nutt <spudmonkey@racsa.co.cr>

View File

@ -1,6 +1,6 @@
/************************************************************************************ /************************************************************************************
* configs/at91dev1/src/at91dev1_internal.h * configs/avr32dev1/src/avr32dev1_internal.h
* arch/avr/src/board/at91dev1_internal.n * arch/avr/src/board/avr32dev1_internal.n
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr> * Author: Gregory Nutt <spudmonkey@racsa.co.cr>

View File

@ -1,5 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/at91dev1/src/up_boot.c * configs/avr32dev1/src/up_boot.c
* arch/avr/src/board/up_boot.c * arch/avr/src/board/up_boot.c
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
@ -48,7 +48,7 @@
#include "up_internal.h" #include "up_internal.h"
#include "avr32_internal.h" #include "avr32_internal.h"
#include "at91dev1_internal.h" #include "avr32dev1_internal.h"
/************************************************************************************ /************************************************************************************
* Definitions * Definitions

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* configs/at91dev1/src/up_leds.c * configs/avr32dev1/src/up_leds.c
* arch/avr/src/board/up_leds.c * arch/avr/src/board/up_leds.c
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
@ -51,7 +51,7 @@
#include "up_internal.h" #include "up_internal.h"
#include "avr32_internal.h" #include "avr32_internal.h"
#include "at91dev1_internal.h" #include "avr32dev1_internal.h"
#ifdef CONFIG_ARCH_LEDS #ifdef CONFIG_ARCH_LEDS
@ -82,7 +82,7 @@
/* Dump GPIO registers */ /* Dump GPIO registers */
#ifdef LED_VERBOSE #ifdef LED_VERBOSE
# define led_dumpgpio(m) avr32_dumpgpio(at91dev1_LED1_A, m) # warning "Not implemented"
#else #else
# define led_dumpgpio(m) # define led_dumpgpio(m)
#endif #endif