Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create nxp example configuration. #67

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions demos-pipeline/example/bin/poky-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ new DemoPipelineStack(app, "QemuDemoPipeline", {
/**
* Create a 3rd Party Distribution Pipeline.
*/
// TODO(nateglims): implement
// new DemoPipelineStack(app, "three-p-Pipeline", {
// ...defaultProps,
// imageRepo: buildImageRepo.repository,
// imageTag: ImageKind.Ubuntu22_04,
// vpc: vpc.vpc,
// });
new DemoPipelineStack(app, "IMX6Pipeline", {
...defaultProps,
imageRepo: buildImageRepo.repository,
imageTag: ImageKind.Ubuntu22_04,
vpc: vpc.vpc,
distroKind: DistributionKind.imx6,
});
2 changes: 2 additions & 0 deletions demos-pipeline/lib/lib/constructs/source-repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export enum DistributionKind {
Poky = "poky",
/** The meta-aws Demonstration Distribution. */
MetaAwsDemo = "meta-aws-demo",
/** the i.mx6 Distribution from NXP. */
imx6 = "imx6",
}

export interface SourceRepoProps extends cdk.StackProps {
Expand Down
1 change: 0 additions & 1 deletion demos-pipeline/lib/lib/demo-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {
} from "aws-cdk-lib/aws-ec2";
import { Bucket } from "aws-cdk-lib/aws-s3";
import { SourceRepo, DistributionKind } from "./constructs/source-repo";
import { CodeCommitTrigger } from "aws-cdk-lib/aws-codepipeline-actions";

/**
* Properties to allow customizing the build.
Expand Down
41 changes: 41 additions & 0 deletions demos-pipeline/lib/source-repo/imx6/build.buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
version: 0.2
run-as: yoctouser

env:
shell: bash

phases:
pre_build:
run-as: root
commands:
- chown -R yoctouser /sstate-cache
- chown -R yoctouser /downloads
- chown yoctouser /build-output
- chmod 755 /sstate-cache
- chmod 755 /downloads
- chmod 755 /build-output
- apt-get install -yq repo
build:
commands:
- echo Build started on `date`
- repo init -u https://github.com/nxp-imx/imx-manifest -b imx-linux-mickledore -m imx-6.1.22-2.0.0.xml
- repo sync
- MACHINE=imx6ull14x14evk EULA=y source ./imx-setup-release.sh -b bld-fb
- bitbake core-image-minimal

post_build:
commands:
- echo Build completed on `date`
- bitbake -m
- ps aux | grep bitbake
- find $TMP_DIR -name '*.socket' -delete
- export BUILD_OUTPUT="$(uuidgen -t).tar"
- tar cf $BUILD_OUTPUT -C $TMP_DIR tmp
- cp -r $BUILD_OUTPUT /build-output
- echo $BUILD_OUTPUT > /build-output/tmpfile

artifacts:
discard-paths: true
files:
- /build-output/tmpfile
- $TMP_DIR/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64*