Initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
Convenience layer for building OpenBMC on ASPEED AST2600 EVB
|
||||
================
|
||||
|
||||
This layer allows you to build OpenBMC for AST2600 EVB in the Aspeed BSP layer
|
||||
without having to manually configure bblayers.conf and local.conf.
|
||||
|
||||
The AST2600 is an ARM, service management SOC made by ASPEED. More information
|
||||
about the AST2600 can be found
|
||||
[here](http://aspeedtech.com/server_ast2600/).
|
||||
@@ -0,0 +1,11 @@
|
||||
# We have a conf and classes directory, add to BBPATH
|
||||
BBPATH .= ":${LAYERDIR}"
|
||||
|
||||
# We have recipes-* directories, add to BBFILES
|
||||
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
||||
${LAYERDIR}/recipes-*/*/*.bbappend"
|
||||
|
||||
BBFILE_COLLECTIONS += "meta-evb-ast2600"
|
||||
BBFILE_PATTERN_meta-evb-ast2600 = "^${LAYERDIR}/"
|
||||
|
||||
LAYERSERIES_COMPAT_meta-evb-ast2600 = "langdale mickledore"
|
||||
@@ -0,0 +1 @@
|
||||
../../../../../meta-aspeed/conf/machine/evb-ast2600.conf
|
||||
@@ -0,0 +1,17 @@
|
||||
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
|
||||
# changes incompatibly
|
||||
LCONF_VERSION = "8"
|
||||
|
||||
BBPATH = "${TOPDIR}"
|
||||
BBFILES ?= ""
|
||||
|
||||
BBLAYERS ?= " \
|
||||
##OEROOT##/meta \
|
||||
##OEROOT##/meta-poky \
|
||||
##OEROOT##/meta-openembedded/meta-oe \
|
||||
##OEROOT##/meta-openembedded/meta-networking \
|
||||
##OEROOT##/meta-openembedded/meta-python \
|
||||
##OEROOT##/meta-phosphor \
|
||||
##OEROOT##/meta-aspeed \
|
||||
##OEROOT##/meta-evb/meta-evb-aspeed/meta-evb-ast2600 \
|
||||
"
|
||||
@@ -0,0 +1,10 @@
|
||||
Common targets are:
|
||||
|
||||
obmc-phosphor-image: Includes OpenBMC Phosphor userspace and Web UI
|
||||
|
||||
core-image-minimal: A small image just capable of allowing a device to boot
|
||||
|
||||
core-image-full-cmdline: A small image with more Linux functionality
|
||||
installed, including a ssh server.
|
||||
|
||||
Note that the core targets will not set the default phosphor password.
|
||||
@@ -0,0 +1,19 @@
|
||||
MACHINE ??= "evb-ast2600"
|
||||
DISTRO ?= "openbmc-phosphor"
|
||||
PACKAGE_CLASSES ?= "package_ipk"
|
||||
SANITY_TESTED_DISTROS:append ?= " *"
|
||||
EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
|
||||
USER_CLASSES ?= "buildstats"
|
||||
PATCHRESOLVE = "noop"
|
||||
BB_DISKMON_DIRS ??= "\
|
||||
STOPTASKS,${TMPDIR},1G,100K \
|
||||
STOPTASKS,${DL_DIR},1G,100K \
|
||||
STOPTASKS,${SSTATE_DIR},1G,100K \
|
||||
STOPTASKS,/tmp,100M,100K \
|
||||
HALT,${TMPDIR},100M,1K \
|
||||
HALT,${DL_DIR},100M,1K \
|
||||
HALT,${SSTATE_DIR},100M,1K \
|
||||
HALT,/tmp,10M,1K"
|
||||
CONF_VERSION = "2"
|
||||
|
||||
require conf/machine/include/obmc-bsp-common.inc
|
||||
Reference in New Issue
Block a user