blob: 7b9726a6ac3312b7c9dc568ea28ed776295a3f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#@TYPE: Machine
#@DESCRIPTION: Machine configuration for various different Marvell Orion based devices
TARGET_ARCH = "arm"
# TARGET_FPU is a distro feature
# Weakly assign it and remove when all distros supporting this device have updated
TARGET_FPU ?= "soft"
MACHINE_FEATURES = "kernel26 usbhost ext2 vfat"
MACHINE_TASK_PROVIDER = "task-base"
USE_DEVFS = "0"
PREFERRED_PROVIDER_virtual/bootloader = ""
PREFERRED_PROVIDER_virtual/kernel = "linux-orion"
PREFERRED_VERSION_linux-orion = "2.6.27.10"
IMAGE_DEVICE_TABLES = "files/device_table-slugos.txt"
IMAGE_FSTYPES = "tar.gz"
SERIAL_CONSOLE = "ttyS0 115200"
# Currently all the orion devices we support use uImage
KERNEL_IMAGETYPE = "uImage"
UBOOT_ENTRYPOINT = "0x00008000"
UBOOT_LOADADDRESS = "0x00008000"
require conf/machine/include/tune-arm926ejs.inc
|