Changes in / [40ad375:d085df10] in mainline
- Files:
-
- 5 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r40ad375 rd085df10 66 66 @ "integratorcp" Integratorcp 67 67 @ "beagleboardxm" BeogleBoard-xM 68 @ "beaglebone" BeogleBone 68 69 ! [PLATFORM=arm32] MACHINE (choice) 69 70 … … 97 98 % CPU type 98 99 @ "armv7_a" ARMv7-A 99 ! [PLATFORM=arm32&MACHINE=beagleboardxm] PROCESSOR (choice) 100 100 ! [PLATFORM=arm32&(MACHINE=beagleboardxm|MACHINE=beaglebone)] PROCESSOR (choice) 101 101 102 102 % RAM disk format -
boot/arch/arm32/Makefile.inc
r40ad375 rd085df10 35 35 endif 36 36 37 ifeq ($(MACHINE), beagleboardxm)37 ifeq ($(MACHINE), $(filter $(MACHINE),beagleboardxm beaglebone)) 38 38 BOOT_OUTPUT = image.boot 39 39 POST_OUTPUT = $(ROOT_PATH)/uImage.bin -
kernel/arch/arm32/Makefile.inc
r40ad375 rd085df10 78 78 endif 79 79 80 ifeq ($(MACHINE),beaglebone) 81 ARCH_SOURCES += arch/$(KARCH)/src/mach/beaglebone/beaglebone.c 82 endif 83 80 84 ifeq ($(CONFIG_PL050),y) 81 85 ARCH_SOURCES += genarch/src/drivers/pl050/pl050.c -
kernel/arch/arm32/src/machine_func.c
r40ad375 rd085df10 43 43 #include <arch/mach/testarm/testarm.h> 44 44 #include <arch/mach/beagleboardxm/beagleboardxm.h> 45 #include <arch/mach/beaglebone/beaglebone.h> 45 46 46 47 /** Pointer to machine_ops structure being used. */ … … 58 59 #elif defined(MACHINE_beagleboardxm) 59 60 machine_ops = &bbxm_machine_ops; 61 #elif defined(MACHINE_beaglebone) 62 machine_ops = &bbone_machine_ops; 60 63 #else 61 64 #error Machine type not defined.
Note:
See TracChangeset
for help on using the changeset viewer.