Changeset 7c866dc in mainline
- Timestamp:
- 2010-06-21T21:02:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 928d983
- Parents:
- 66fcba2
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r66fcba2 r7c866dc 58 58 59 59 % Machine type 60 @ "gta02" GTA02 / Neo FreeRunner 60 61 @ "testarm" GXEmul Testarm 61 62 @ "integratorcp" Integratorcp -
boot/arch/arm32/include/main.h
r66fcba2 r7c866dc 38 38 39 39 /** Address where characters to be printed are expected. */ 40 41 #ifdef MACHINE_gta02 42 /* FIXME: Need real S3C244x UART driver. */ 43 #define VIDEORAM_ADDRESS 0x50008020 44 #endif 45 40 46 #ifdef MACHINE_testarm 41 47 #define VIDEORAM_ADDRESS 0x10000000 -
kernel/arch/arm32/Makefile.inc
r66fcba2 r7c866dc 61 61 arch/$(KARCH)/src/ras.c 62 62 63 ifeq ($(MACHINE),gta02) 64 ARCH_SOURCES += arch/$(KARCH)/src/mach/gta02/gta02.c 65 endif 66 63 67 ifeq ($(MACHINE),testarm) 64 68 ARCH_SOURCES += arch/$(KARCH)/src/mach/testarm/testarm.c -
kernel/arch/arm32/src/machine_func.c
r66fcba2 r7c866dc 39 39 40 40 #include <arch/machine_func.h> 41 #include <arch/mach/gta02/gta02.h> 41 42 #include <arch/mach/integratorcp/integratorcp.h> 42 43 #include <arch/mach/testarm/testarm.h> … … 48 49 void machine_ops_init(void) 49 50 { 50 #if defined(MACHINE_testarm) 51 #if defined(MACHINE_gta02) 52 machine_ops = >a02_machine_ops; 53 #elif defined(MACHINE_testarm) 51 54 machine_ops = &gxemul_machine_ops; 52 55 #elif defined(MACHINE_integratorcp) -
uspace/srv/hid/kbd/Makefile
r66fcba2 r7c866dc 58 58 59 59 ifeq ($(UARCH),arm32) 60 ifeq ($(MACHINE),gta02) 61 SOURCES += \ 62 port/dummy.c \ 63 ctl/pc.c 64 endif 60 65 ifeq ($(MACHINE),testarm) 61 66 SOURCES += \
Note:
See TracChangeset
for help on using the changeset viewer.