Cástor Muñoz | 346423c | 2016-02-04 23:05:17 +0100 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id:$ |
| 9 | * |
| 10 | * Copyright (C) 2012 by Andrew Ryabinin |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version 2 |
| 15 | * of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 18 | * KIND, either express or implied. |
| 19 | * |
| 20 | ****************************************************************************/ |
| 21 | #ifndef __BUILD_AUTOCONF_H |
| 22 | #define __BUILD_AUTOCONF_H |
| 23 | |
| 24 | /* lower case names match the what's exported in the Makefile |
| 25 | * upper case name looks nicer in the code */ |
| 26 | |
| 27 | #define arch_none 0 |
| 28 | #define ARCH_NONE 0 |
| 29 | |
| 30 | #define arch_sh 1 |
| 31 | #define ARCH_SH 1 |
| 32 | |
| 33 | #define arch_m68k 2 |
| 34 | #define ARCH_M68K 2 |
| 35 | |
| 36 | #define arch_arm 3 |
| 37 | #define ARCH_ARM 3 |
| 38 | |
| 39 | #define arch_mips 4 |
| 40 | #define ARCH_MIPS 4 |
| 41 | |
| 42 | #define arch_x86 5 |
| 43 | #define ARCH_X86 5 |
| 44 | |
| 45 | #define arch_amd64 6 |
| 46 | #define ARCH_AMD64 6 |
| 47 | |
| 48 | /* Define target machine architecture */ |
| 49 | #define ARCH arch_arm |
| 50 | /* Optionally define architecture version */ |
| 51 | #define ARCH_VERSION 5 |
| 52 | |
| 53 | /* Define endianess for the target or simulator platform */ |
| 54 | #define ROCKBOX_LITTLE_ENDIAN 1 |
| 55 | |
| 56 | /* Define this if you build rockbox to support the logf logging and display */ |
| 57 | #undef ROCKBOX_HAS_LOGF |
| 58 | |
| 59 | /* Define this if you want logf to output to the serial port */ |
| 60 | #undef LOGF_SERIAL |
| 61 | |
| 62 | /* Define this to record a chart with timings for the stages of boot */ |
| 63 | #undef DO_BOOTCHART |
| 64 | |
| 65 | /* the threading backend we use */ |
| 66 | #define ASSEMBLER_THREADS |
| 67 | |
| 68 | /* root of Rockbox */ |
| 69 | #define ROCKBOX_DIR "/.rockbox" |
| 70 | #define ROCKBOX_SHARE_PATH "" |
| 71 | #define ROCKBOX_BINARY_PATH "" |
| 72 | #define ROCKBOX_LIBRARY_PATH "" |
| 73 | |
| 74 | #endif /* __BUILD_AUTOCONF_H */ |