forked from awawa-dev/HyperHDR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add aarch64 build scripts for pi-gen OS image creator
- Loading branch information
Showing
4 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash -e | ||
|
||
CLEAN=1 ./build.sh -c config_v8 | ||
mv deploy/armv8/image*HyperHDR-lite.zip deploy/armv8/SD-card-image-rpi234-aarch64.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
IMG_NAME='HyperHDR' | ||
DEPLOY_DIR="${BASE_DIR}/deploy/armv8" | ||
STAGE_LIST='stage0 stage1 stage2 stage-hyperhdr' | ||
TARGET_HOSTNAME='HyperHDR' | ||
APT_PROXY='http://127.0.0.1:3142' | ||
ENABLE_SSH=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,11 @@ if [ "$DEPLOY_DIR" != "${DEPLOY_DIR/v7/}" ]; then | |
wget https://github.com/awawa-dev/HyperHDR/releases/download/v${HYPERHDR_VERSION}/HyperHDR-${HYPERHDR_VERSION}-Linux-armv7l.deb | ||
apt install ./HyperHDR-${HYPERHDR_VERSION}-Linux-armv7l.deb | ||
rm HyperHDR-${HYPERHDR_VERSION}-Linux-armv7l.deb | ||
elif [ "$DEPLOY_DIR" != "${DEPLOY_DIR/v8/}" ]; then | ||
echo 'BUILDING ARM aarch64 RELEASE............................' | ||
wget https://github.com/awawa-dev/HyperHDR/releases/download/v${HYPERHDR_VERSION}/HyperHDR-${HYPERHDR_VERSION}-Linux-aarch64.deb | ||
apt install ./HyperHDR-${HYPERHDR_VERSION}-Linux-aarch64.deb | ||
rm HyperHDR-${HYPERHDR_VERSION}-Linux-aarch64.deb | ||
else | ||
echo 'BUILDING ARM v6 RELEASE............................' | ||
wget https://github.com/awawa-dev/HyperHDR/releases/download/v${HYPERHDR_VERSION}/HyperHDR-${HYPERHDR_VERSION}-Linux-armv6l.deb | ||
|
@@ -21,3 +26,7 @@ fi | |
|
||
echo 'Registering HyperHdr service........................' | ||
systemctl -q enable [email protected] | ||
|
||
sed -i "s/^#dtparam=spi=on.*/dtparam=spi=on/" /boot/config.txt | ||
sed -i "s/^#hdmi_force_hotplug=1.*/hdmi_force_hotplug=1/" /boot/config.txt | ||
|
This file was deleted.
Oops, something went wrong.