summaryrefslogtreecommitdiff
path: root/meta-aspeed/recipes-kernel/linux/linux-aspeed
AgeCommit message (Collapse)AuthorFilesLines
2019-09-04aspeed: g6: Use the usual kernelBrad Bishop1-0/+299
Switch g6 to the same kernel as the other supported chips (g4 and g5). (From meta-aspeed rev: f28c73a9f2e0296c1730b88afdc6cf0c836d08fa) Change-Id: I659e535ccb4642438b9c10c48a4850d67b28982b Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-07-23aspeed: drop execute permissions from g5 defconfigBrad Bishop1-0/+0
(From meta-aspeed rev: 89362f7e06b1b3766d359694ee9a907ae769d35d) Change-Id: Ia83eea11281f387451c3ee17ba62ae15b068dd52 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-07-12linux-aspeed: Regenerate defconfigs for 5.2Joel Stanley2-103/+51
This is a noop regeneration of the defconfigs. Options have been removed from the upstream kernel, made defaults (such as the OCC option), and re-ordered. (From meta-aspeed rev: f4fa60b9ef4e0d83ac0923162b59f385bd12844f) Change-Id: I10d637463d5f69de4a58e1f19371286800fc80dc Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-07-04linux-aspeed: disable USB host featuresJae Hyun Yoo2-12/+12
Not all BMCs use USB host features so this commit removes USB host features from defconfig so that the features can be enabled in each machine layer when those are actually needed. (From meta-aspeed rev: 679e60064113e89d18528ed65d75daf97547a5f1) Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> Change-Id: I9c24fa9d381c81df51e148aacafad1c4a8af49e9 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-06-13linux-aspeed: Add PCA953X driver to defconfigJoel Stanley1-0/+2
This is used by the Swift system. (From meta-aspeed rev: 27b8161d02b6a37c4822a2f9eb26f94fcbe82dca) Signed-off-by: Joel Stanley <joel@jms.id.au> Change-Id: I68ccf9a25befa874634cfbe076ab300801d2f70b Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-04-29meta-aspeed: MACHINEOVERRIDES fixupsBrad Bishop2-0/+534
OE-Core adds the value of SOC_FAMILY to MACHINEOVERRIDES, so explicitly setting a MACHINEOVERRIDES is redundant. Drop the explicit ast2400/ast2500 MACHINEOVERRIDES and use the OE-Core provided aspeed-g4 and aspeed-g5 instead. After the redundant ast2400/ast2500 overrides are dropped, the ordering of the values in MACHINEOVERRIDES is wrong: MACHINEOVERRIDES="aspeed-g5:aspeed" This means that: FOO_aspeed = "bar" will override: FOO_aspeed-g5 = "baz" which is the opposite of expectation. The ordering is a function of config file include order and choice of the predot vs postdot operator. Use the same include ordering and dot operators as meta-fsl-arm to get the overrides to appear in MACHINEOVERRIDES in the correct order such that the expected semantics are provided and: FOO_aspeed-g5 = "bar" will override: FOO_aspeed = "baz" Drop explicit setting for FILESPATH as OE-Core adds OVERRIDES to FILESPATH and bitbake will find the appropriate defconfig without them. Move defconfigs to aspeed-g4 and aspeed-g5 since the ast2400 and ast2500 are being removed. (From meta-aspeed rev: 85d614a69c1e752fb4d5917499500c37c4f745ac) Change-Id: I63c0f71f14bf9145e7e769902be87bb267a78a30 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>