-
-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stephan Wendel <[email protected]>
- Loading branch information
Showing
3 changed files
with
65 additions
and
7 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,28 @@ | ||
#!/usr/bin/env bash | ||
# Shebang for better file detection | ||
# shellcheck enable=require-variable-braces | ||
# shellcheck disable=SC2034 | ||
|
||
|
||
|
||
# Image source | ||
DOWNLOAD_URL_CHECKSUM="https://github.com/KwadFan/SmartPi-armbian/releases/download/20240215-1515/Yumi-smartpad-bookworm-server.img.xz.sha256" | ||
DOWNLOAD_URL_IMAGE="https://github.com/KwadFan/SmartPi-armbian/releases/download/20240215-1515/Yumi-smartpad-bookworm-server.img.xz" | ||
|
||
|
||
BASE_USER="yumi" | ||
BASE_USER_PASSWORD="smartpad" | ||
|
||
MODULES="base(pkgupgrade,udev_fix,armbian(armbian_net,mainsailos,klipper,is_req_preinstall,moonraker,mainsail,timelapse,klipperscreen,crowsnest,sonar))" | ||
|
||
# export Variables | ||
export BASE_ARCH | ||
export DOWNLOAD_URL_CHECKSUM | ||
export DOWNLOAD_URL_IMAGE | ||
|
||
### JSON sniplet Setup | ||
### NOTE: Please see all config files for setup variables!!! | ||
# shellcheck disable=SC2034 | ||
JSON_PRETTY_SBC_NAME="Yumi SmartPad" | ||
# shellcheck disable=SC2034 | ||
JSON_SUPPORTED_SBC="smartpad-64bit" |
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,28 @@ | ||
#!/usr/bin/env bash | ||
# Shebang for better file detection | ||
# shellcheck enable=require-variable-braces | ||
# shellcheck disable=SC2034 | ||
|
||
|
||
|
||
# Image source | ||
DOWNLOAD_URL_CHECKSUM="https://github.com/KwadFan/SmartPi-armbian/releases/download/20240215-1515/Yumi-smartpi1-bookworm-server.img.xz" | ||
DOWNLOAD_URL_IMAGE="https://github.com/KwadFan/SmartPi-armbian/releases/download/20240215-1515/Yumi-smartpi1-bookworm-server.img.xz.sha256" | ||
|
||
|
||
BASE_USER="yumi" | ||
BASE_USER_PASSWORD="smartpi" | ||
|
||
MODULES="base(pkgupgrade,udev_fix,armbian(armbian_net,mainsailos,klipper,is_req_preinstall,moonraker,mainsail,timelapse,klipperscreen,crowsnest,sonar))" | ||
|
||
# export Variables | ||
export BASE_ARCH | ||
export DOWNLOAD_URL_CHECKSUM | ||
export DOWNLOAD_URL_IMAGE | ||
|
||
### JSON sniplet Setup | ||
### NOTE: Please see all config files for setup variables!!! | ||
# shellcheck disable=SC2034 | ||
JSON_PRETTY_SBC_NAME="Yumi SmartPi" | ||
# shellcheck disable=SC2034 | ||
JSON_SUPPORTED_SBC="smartpi-64bit" |