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

Make uSD Card Image for the Audio Mini #24

Merged
merged 42 commits into from
Jan 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
db752d8
Added initial files
fe-tdavis Oct 5, 2020
2410010
Rough draft of the instructions
fe-tdavis Oct 5, 2020
38c1200
Merge branch 'dev' of github.com:fpga-open-speech-tools/utils into ma…
fe-wickham Dec 22, 2020
9d307c8
Updated sdimage script with working directory option and added bash s…
fe-wickham Dec 23, 2020
df636b1
Merge branch 'make_sdcard_dev' of github.com:fpga-open-speech-tools/u…
fe-wickham Dec 23, 2020
a267e07
Added checks to download the Image artifacts from S3
CDack Dec 23, 2020
6407f6f
Added blueprint for creating uSD images
fe-tdavis Jan 5, 2021
0fd9ae9
Documentation update
fe-tdavis Jan 5, 2021
69a9475
Updated the build script
dack-fe Jan 6, 2021
3df87d6
Moved the Build Audio Mini Image Script
dack-fe Jan 6, 2021
f1e9603
Initial Commit
dack-fe Jan 6, 2021
c9114a3
Updated the Dockerfile for the audiomini build
dack-fe Jan 6, 2021
15af6d6
Updated the file name
dack-fe Jan 6, 2021
e70f659
Updated the docker_build script for the Audio Mini Linux Image
dack-fe Jan 6, 2021
b6cbc39
Updated the docker build script name
dack-fe Jan 6, 2021
94cdf72
Removed the folder/file checks
dack-fe Jan 6, 2021
9ffd5b1
Updated the gitignore
dack-fe Jan 6, 2021
85b9f06
Added Giti and Python3
dack-fe Jan 6, 2021
7f62cfe
Updated the checkout
dack-fe Jan 6, 2021
d2c971b
Working on Debugging the Docker Build
dack-fe Jan 6, 2021
e79e29b
Debugging with Dylan
dack-fe Jan 6, 2021
2a6994c
Updated the folder name
dack-fe Jan 6, 2021
7b8c12c
Initial Commit
dack-fe Jan 6, 2021
edf1aff
Copying Artifacts from Jenkins
dack-fe Jan 6, 2021
5054c4c
Merge branch 'dev' into make_sdcard_dev
dack-fe Jan 7, 2021
5c99ec4
Merge branch 'dev' into make_sdcard_dev
dack-fe Jan 7, 2021
62632b1
Added the Image Builder Folder Structure
dack-fe Jan 7, 2021
7245d7c
Updated the Jenkinsfile to check the image builder folder
dack-fe Jan 7, 2021
ed74a31
Removed the Procedure Section
dack-fe Jan 7, 2021
80ff667
Removed the old Altera Python Script
dack-fe Jan 7, 2021
1c688ae
Added Read Me with Key Files and Instructions to build the Audio Mini…
dack-fe Jan 7, 2021
7fbac51
Updated with current master branch
dack-fe Jan 7, 2021
372db95
Removed the ReadMe Call Out Numbers
dack-fe Jan 7, 2021
954ef05
Removed the Read Me Call Out Numbers
dack-fe Jan 7, 2021
226793e
Updated the instructions
dack-fe Jan 7, 2021
6868616
Removed the debugging line that was commetted out
dack-fe Jan 8, 2021
8f91a9e
Updated the git ignore with the folder change
dack-fe Jan 8, 2021
51025f7
Added comments to the Docker file
dack-fe Jan 8, 2021
7e0080c
Added copy artifact of the Audio Mini Passthrough RBF
dack-fe Jan 8, 2021
abce0d0
Update the project name
dack-fe Jan 8, 2021
2b6b53d
Updated Jenkins Project Name
dack-fe Jan 8, 2021
78ac910
Updated back to the Linux LKM Jenkins Pipeline
dack-fe Jan 8, 2021
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.dtbo
**/.vscode
**/__pycache__/**
image_builder/audiomini/DistroBlueprint.xml
13 changes: 13 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@ pipeline
build job: 'Frost_Edge'
}
}
stage ('Image Builder - Audio Mini')
{
when {
anyOf {
changeset "image_builder/frost_usd_card_blueprint.xml"
changeset "image_builder/audiomini/*"
}
}
steps
{
build job: 'audiomini-linux-image'
}
}
stage('Frost Root File System')
{
when { changeset "rootfs/*"}
Expand Down
28 changes: 19 additions & 9 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,25 @@
FrOST Utilities

## Folder Structure
|-- frost_edge # Frost Edge Packager
|-- packaging # Packaging Files
|-- debian # Debian Packaging Files
|-- scripts # Frost Edge Scripts
|-- frost_edge.service # Frost Edge Service that calls frost_edge.sh on boot
|-- frost_edge.sh # Bash Script that starts the web app and node server
|-- makefile # Makefile to build the package
|-- Jenkinsfile # Jenkins File to build the package
|-- Install.md # Installation Steps
|-- frost_edge # Frost Edge Packager
|-- packaging # Packaging Files
|-- debian # Debian Packaging Files
|-- scripts # Frost Edge Scripts
|-- frost_edge.service # Frost Edge Service that calls frost_edge.sh on boot
|-- frost_edge.sh # Bash Script that starts the web app and node server
|-- makefile # Makefile to build the package
|-- Jenkinsfile # Jenkins File to build the package
|-- Install.md # Installation Steps

|-- image_builder # Files and Scripts required to build the FrOST Linux Images
|-- audiomini # Files specific to the Audio Mini
|-- build_audiomini_image.sh # Bash Script to build the Audio Mini Linux Image
|-- docker_build_audiomini.sh # Bash Script to build the Audio Mini Image with Docker
|-- Dockerfile # Dockerfile to define the Docker Container
|-- Jenkinsile # Jenkins Build Script
|-- ReadMe.md # Audio Mini Linux Image Build Instructions
|-- frost_usd_card_blueprint.xml # The FrOST uSD Card Partition Structure
|-- README.md # Image Builder Read Me

|-- json # MATLAB Functions to Read and Write JSON Files
|-- readjson.m
Expand Down
17 changes: 17 additions & 0 deletions image_builder/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# FrOST Linux Image Builder
The FrOST Linux Image Builder utility provide a simple way to generate a new uSD Linux Image for the various FrOST Hardware. The build script will check the local system for the required files and download the missing files from the FrOST Release S3 Bucket. More details about the specific builds can be found in the hardware folders.

## Generated Images
- [Audio Mini](https://frost-release.s3-us-west-2.amazonaws.com/linux-images/audio-mini-image.zip)

## Image Builder Folder Structure
|-- audiomini # Files specific to the Audio Mini
|-- build_audiomini_image.sh # Bash Script to build the Audio Mini Linux Image
|-- docker_build_audiomini.sh # Bash Script to build the Audio Mini Image with Docker
|-- Dockerfile # Dockerfile to define the Docker Container
|-- Jenkinsile # Jenkins Build Script
|-- ReadMe.md # Audio Mini Linux Image Build Instructions
|-- frost_usd_card_blueprint.xml # The FrOST uSD Card Partition Structure
|-- README.md # Image Builder Read Me


22 changes: 22 additions & 0 deletions image_builder/audiomini/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Define the Container - Ubuntu 20.04
FROM ubuntu:focal
# Update the Packages
RUN apt-get update
# Install the required packages for the Audio Mini Build Script
RUN apt install \
# WGET to download the artifcats from S3
wget \
# Sudo to run the build script
sudo \
# Git to clone the Linux Builder Repo
git \
# Python3 to run the Linux Builder Python Script
python3 \
# dosfstools installs mkfs.vfat which is used in the image creation
dosfstools -y
# Copy the local files into the container
COPY * /tmp/
# Set the working directory to the location of the files
WORKDIR /tmp
# Set the entry point as the Build Audio Mini Script
ENTRYPOINT ["/bin/bash","./build_audiomini_image.sh"]
88 changes: 88 additions & 0 deletions image_builder/audiomini/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
pipeline
{
agent none
stages
{
stage ('Ubuntu_20.04.1')
{
agent {label 'Ubuntu_20.04.1'}
stages
{
stage('Copy Audio Mini Passthrough RBF')
{
steps
{
copyArtifacts filter: 'soc_system.rbf', fingerprintArtifacts: true, projectName: 'DE10_AudioMini_Passthrough', selector: lastSuccessful(), target: 'image_builder/audiomini/'
}
}

stage('Copy Frost Linux Kernel')
{
steps
{
copyArtifacts filter: 'zImage', fingerprintArtifacts: true, projectName: 'Linux_Kernel', selector: lastSuccessful(), target: 'image_builder/audiomini/'
}
}

stage('Copy Audio Mini uBoot')
{
steps
{
copyArtifacts filter: 'u-boot.scr', fingerprintArtifacts: true, projectName: 'audiomini-uboot', selector: lastSuccessful(), target: 'image_builder/audiomini/'
copyArtifacts filter: 'u-boot.img', fingerprintArtifacts: true, projectName: 'audiomini-uboot', selector: lastSuccessful(), target: 'image_builder/audiomini/'
}
}

stage('Copy Audio Mini Preloader')
{
steps
{
copyArtifacts filter: 'audiomini_preloader.bin', fingerprintArtifacts: true, projectName: 'audiomini-preloader', selector: lastSuccessful(), target: 'image_builder/audiomini/'
}
}

stage('Copy Frost Root File System')
{
steps
{
copyArtifacts filter: 'frost_rootfs.tar.gz', fingerprintArtifacts: true, projectName: 'Frost_RootFS', selector: lastSuccessful(), target: 'image_builder/audiomini/'
}
}

stage('Build Audio Mini Linux Image')
{
steps
{ dir("image_builder/audiomini")
{
sh 'chmod +x docker_build_audiomini.sh;'
sh './docker_build_audiomini.sh;'
}
}
}

stage('Archive')
{
steps
{
dir("image_builder/audiomini/")
{
sh 'zip audio-mini-image.zip audio-mini.img'
archiveArtifacts artifacts: 'audio-mini-image.zip', fingerprint: true
}
}
}

stage('Cleanup')
{
steps
{
deleteDir()
dir("${workspace}@tmp") {
deleteDir()
}
}
}
}
}
}
}
24 changes: 24 additions & 0 deletions image_builder/audiomini/ReadMe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Audio Mini Linux Image Builder
The Audio Mini Linux Image Builder generates the complete Audio Mini uSD Card Image using Docker and the [Linux Boot Image File Generator](https://github.com/fpga-open-speech-tools/LinuxBootImageFileGenerator)

## Key Files
- `build_audiomini_image.sh` - The Audio Mini Image Build Script
- Checks for and downloads the required files from the FrOST Release S3 Bucket
- Runs the Linux Boot Image File Generator Python Script
- `docker_build_audiomini.sh` - The Docker Build Script
- Copies the `frost_usd_card_blueprint.xml` into the current folder
- Runs the Docker Container
- `Dockerfile`
- Defines the Docker Container
- Copies all of the files from the current folder in the Docker Container
- Run `build_audiomini_image.sh`
- `Jenkinsfile`
- Automation of the build process using Jenkins

## Building the Audio Mini Linux Image with Docker
1. Install [Docker for Windows](https://docs.docker.com/docker-for-windows/install/)
2. Open Windows Subsystem for Linux and Navigate to `[FrOST Repos]\utils\image_builder\audiomini`
3. Make the Docker Build Script executable by running
- `chmod +x docker_build_audiomini.sh`
4. Run the Docker Build - Audio Mini Bash Script with
- `./docker_build_audiomini.sh`
87 changes: 87 additions & 0 deletions image_builder/audiomini/build_audiomini_image.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
#!/bin/bash
# Clone the LinuxBootImageFileGenerator Repo
git clone https://github.com/fpga-open-speech-tools/LinuxBootImageFileGenerator.git

# Copy DistroBlueprint.xml into LinuxBootImageFileGenerator
cp DistroBlueprint.xml LinuxBootImageFileGenerator/;

# Make the Image_partitions/Pat_1_vfat Folder
mkdir -p LinuxBootImageFileGenerator/Image_partitions/Pat_1_vfat/;

# Check for the Audio Mini DTB
if [ -f soc_system.dtb ]; then
echo 'Using the local Audio Mini DTB.'
else
echo 'Downloading the Audio Mini DTB from S3 Archive'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/audiomini/soc_system.dtb
fi
cp soc_system.dtb LinuxBootImageFileGenerator/Image_partitions/Pat_1_vfat/;

# Check for the Audio Mini Raw Binary File
if [ -f soc_system.rbf ]; then
echo 'Using the local Audio Mini RBF.'
else
echo 'Downloading the Audio Mini RBF from S3 Archive'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/audiomini/soc_system.rbf
fi
cp soc_system.rbf LinuxBootImageFileGenerator/Image_partitions/Pat_1_vfat/;

# Check for the zImage
if [ -f zImage ]; then
echo 'Using the local zImage.'
else
echo 'Downloading the zImage from S3 Archive'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/common/zImage
fi
cp zImage LinuxBootImageFileGenerator/Image_partitions/Pat_1_vfat/;

# Check for the Audio Mini uBoot Source
if [ -f u-boot.scr ]; then
echo 'Using the local Audio Mini uBoot Source.'
else
echo 'Downloading the Audio Mini uBoot Source from S3 Archive'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/audiomini/u-boot.scr
fi
cp u-boot.scr LinuxBootImageFileGenerator/Image_partitions/Pat_1_vfat/;

# Check for the Audio Mini uBoot Image
if [ -f u-boot.img ]; then
echo 'Using the local Audio Mini uBoot Image.'
else
echo 'Downloading the Audio Mini uBoot Image from S3 Archive'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/audiomini/u-boot.img
fi
cp u-boot.img LinuxBootImageFileGenerator/Image_partitions/Pat_1_vfat/;

# Make the Image_partitions/Pat_3_raw Folder
mkdir -p LinuxBootImageFileGenerator/Image_partitions/Pat_3_raw;
# Check for the Audio Mini Preloader
if [ -f audiomini_preloader.bin ]; then
echo 'Using the local Audio Mini Preloader.'
else
echo 'Downloading the Audio Mini Preloader from S3 Archive.'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/audiomini/audiomini_preloader.bin
fi
cp audiomini_preloader.bin LinuxBootImageFileGenerator/Image_partitions/Pat_3_raw;

# Make the Image_partitions/Pat_2_ext3 Folder
mkdir -p LinuxBootImageFileGenerator/Image_partitions/Pat_2_ext3;
# Check for the Root File System
if [ -d ubuntu-base ]; then
echo 'Using the local extracted file system - ubuntu-base.'
else
if [ -f frost_rootfs.tar.gz ]; then
echo 'Using the local Root File System.'
tar -xhzvf frost_rootfs.tar.gz;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this preserve symbolic links? I guess if the final image works, then it doesn't matter.

Copy link
Member

@fe-wickham fe-wickham Jan 8, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't believe it does given the -h is described as follow symlinks; archive and dump the files they point to (it does the same for hardlinks as well).

I feel like presently we are using the -h out of necessity because I recall problems when extracting without that flag but I would have to investigate further to know what problems we are running into without it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I see. So links are just being replaced by the files.

From my recollection, things will be messed up, and probably won't boot, if links are ignored. I recall running into issues where things like /bin/sh couldn't be found, leading to kernel panics.

I believe -p preserves symbolic links, which would be an alternative to -h.

else
echo 'Downloading the FrOST Root File System from S3 Archive.'
wget https://frost-release.s3-us-west-2.amazonaws.com/linux-images/artifacts/common/frost_rootfs.tar.gz
tar -xhzvf frost_rootfs.tar.gz;
fi
fi
echo "Copying Root File System to LinuxBootImageFileGenerator/Image_partitions/Pat_2_ext3"
mv ubuntu-base/* LinuxBootImageFileGenerator/Image_partitions/Pat_2_ext3;

cd LinuxBootImageFileGenerator;
python3 LinuxBootImageGenerator.py;
mv LinuxDistro*.img audio-mini.img;
11 changes: 11 additions & 0 deletions image_builder/audiomini/docker_build_audiomini.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
cp ../frost_usd_card_blueprint.xml ./DistroBlueprint.xml

# Build the Audio Mini Linux Image with Docker
project="build_audiomini_image"

docker build -t $project .
docker run -v /dev:/dev --name $project --privileged $project
docker cp $project:/tmp/LinuxBootImageFileGenerator/audio-mini.img .
docker rm -f $project
docker rmi -f $project
26 changes: 26 additions & 0 deletions image_builder/frost_usd_card_blueprint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding = "UTF-8" ?>
<!-- Linux Distribution Blueprint XML file -->
<!-- Used by the Python script "LinuxDistro2Image.py" -->
<!-- to create a custom Linux boot image file -->
<!-- Description: -->
<!-- item "partition" describes a partition on the final image file-->
<!-- L "id" => Partition number on the final image (1 is the lowest number) -->
<!-- L "type" => Filesystem type of partition -->
<!-- L => ext[2-4], Linux, xfs, vfat, fat, none, raw, swap -->
<!-- L "size" => Partition size -->
<!-- L => <no>: Byte, <no>K: Kilobyte, <no>M: Megabyte or <no>G: Gigabyte -->
<!-- L => "*" dynamic file size => Size of the files2copy + offset -->
<!-- L "offset" => in case a dynamic size is used the offset value is added to file size-->
<!-- L "devicetree"=> compile the Linux Device (.dts) inside the partition if available (Top folder only)-->
<!-- L => Yes: Y or No: N -->
<!-- L "unzip" => Unzip a compressed file if available (Top folder only) -->
<!-- L => Yes: Y or No: N -->
<!-- L "ubootscript" => Compile the u-boot script file ("boot.script") -->
<!-- L => Yes, for the ARMv7A (32-bit) architecture ="arm" -->
<!-- L => Yes, for the ARMv8A (64-bit) architecture ="arm64" -->
<!-- L => No ="" -->
<LinuxDistroBlueprint>
<partition id="1" type="vfat" size="1G" offset="500M" devicetree="N" unzip="N" ubootscript="" />
<partition id="2" type="ext3" size="12G" offset="1M" devicetree="N" unzip="Y" ubootscript="" />
<partition id="3" type="RAW" size="*" offset="20M" devicetree="N" unzip="N" ubootscript="" />
</LinuxDistroBlueprint>