machine: Rename rockchip.inc include file to rk3066.inc

This include file is used by rk3066 and rk3188 based devices. So this
is better to rename it rk3066.inc and to create another include file
rk3188.inc which simply includes it. In that way, we have one include
file for each SoC and it reduces confusions.

Signed-off-by: Romain Perier <romain.perier@gmail.com>
Reviewed-by: Trevor Woerner <twoerner@gmail.com>
This commit is contained in:
Romain Perier 2015-08-01 10:53:46 +02:00 committed by Romain Perier
parent 24b2d8459b
commit ac7c320104
5 changed files with 7 additions and 3 deletions

View File

@ -0,0 +1,4 @@
# Copyright (C) 2015 Romain Perier
# Released under the MIT license (see COPYING.MIT for the terms)
require conf/machine/include/rk3066.inc

View File

@ -6,7 +6,7 @@
#@DESCRIPTION: Machine configuration for the MarsBoard, based on Rockchip RK3066 SoC
#http://www.marsboard.com
require conf/machine/include/rockchip.inc
require conf/machine/include/rk3066.inc
PREFERRED_PROVIDER_virtual/kernel = "linux"
SERIAL_CONSOLES = "115200;ttyS2"

View File

@ -7,7 +7,7 @@
#@DESCRIPTION: Machine configuration for the Radxa Rock Board, based on Rockchip RK3188 CPU
#http://radxa.com
require conf/machine/include/rockchip.inc
require conf/machine/include/rk3188.inc
PREFERRED_PROVIDER_virtual/kernel = "linux"
SERIAL_CONSOLES ?= "115200;ttyS2"

View File

@ -5,6 +5,6 @@
#@NAME: Generic RK3188
#@DESCRIPTION: Machine configuration based on Rockchip RK3188 CPU
require conf/machine/include/rockchip.inc
require conf/machine/include/rk3188.inc
PREFERRED_PROVIDER_virtual/kernel = "linux-rockchip-3.0-rk3188"