forked from armbian/build
-
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.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 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,33 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
cd "$(dirname "$0")/.." | ||
COMMAND=${1:-build} | ||
|
||
# defaults | ||
export SOURCE_DATE_EPOCH=1707904372 | ||
export KBUILD_BUILD_TIMESTAMP='Wed Feb 14 10:52:52 CET 2024' | ||
export KBUILD_BUILD_USER=george | ||
export KBUILD_BUILD_HOST=george | ||
|
||
./compile.sh $COMMAND \ | ||
\ | ||
BOARD=mydyt507h \ | ||
BRANCH=current \ | ||
RELEASE=jammy \ | ||
\ | ||
BUILD_MINIMAL=yes \ | ||
BUILD_DESKTOP=no \ | ||
\ | ||
INSTALL_HEADERS=no \ | ||
USE_GITHUB_UBOOT_MIRROR=yes \ | ||
USE_TORRENT=no \ | ||
KERNEL_CONFIGURE=no \ | ||
BUILD_KSRC=no \ | ||
KERNEL_GIT=shallow \ | ||
ARTIFACT_IGNORE_CACHE=yes \ | ||
SKIP_ARMBIAN_REPO=yes \ | ||
BOOT_LOGO=yes \ | ||
IGNORE_UPDATES=no \ | ||
|
||
# BUILD_ONLY=default # what was this for? |