forked from mainsail-crew/MainsailOS
-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try compiling Orange Pi CM4 raspberry pi os image
- Loading branch information
1 parent
2b525aa
commit c64b5b6
Showing
2 changed files
with
17 additions
and
2 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
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,14 @@ | ||
#!/usr/bin/env bash | ||
# Shebang for better file detection | ||
|
||
# Just guessing, there's zero information on the architecture of this image. | ||
BASE_ARCH="arm64" | ||
|
||
# Third party OrangePi 4 Raspberry Pi OS image. | ||
DOWNLOAD_URL_CHECKSUM="https://gist.githubusercontent.com/miklschmidt/eb0dee54e204a8e5c030f5f4b2976588/raw/6cfe7cde0896fdd25b2b3f9a81ecf3d33cd5ddcb/Orangepicm4_1.0.0_raspios_bullseye_server_linux5.10.160.7z.sha256" | ||
DOWNLOAD_URL_IMAGE="https://github.com/leeboby/raspberry-pi-os-images/releases/download/opicm4/Orangepicm4_1.0.0_raspios_bullseye_server_linux5.10.160.7z" | ||
|
||
# export variables | ||
export BASE_ARCH | ||
export DOWNLOAD_URL_CHECKSUM | ||
export DOWNLOAD_URL_IMAGE |