build: Split envsetup help to a separate file

Change-Id: I76063d36775c8c7326153de50e44a24410fc11a2
This commit is contained in:
Michael Bestas 2024-09-05 01:06:15 +03:00 committed by Bartłomiej Rudecki
parent 5d311b2821
commit 0a7410cb9e
2 changed files with 25 additions and 26 deletions

View file

@ -1,29 +1,3 @@
function __print_tequila_functions_help() {
cat <<EOF
Additional tequilaOS functions:
- cout: Changes directory to out.
- mmp: Builds all of the modules in the current directory and pushes them to the device.
- mmap: Builds all of the modules in the current directory and its dependencies, then pushes the package to the device.
- mmmp: Builds all of the modules in the supplied directories and pushes them to the device.
- tequilagerrit: A Git wrapper that fetches/pushes patch from/to tequilaOS Gerrit Review.
- tequilarebase: Rebase a Gerrit change and push it again.
- githubremote: Add git remote for tequilaOS Github.
- gerritremote: Add git remote for tequilaOS Gerrit Review.
- aospremote: Add git remote for matching AOSP repository.
- cloremote: Add git remote for matching CodeLinaro repository.
- mka: Builds using SCHED_BATCH on all processors.
- mkap: Builds the module(s) using mka and pushes them to the device.
- cmka: Cleans and builds using mka.
- repodiff: Diff 2 different branches or tags within the same repo
- repolastsync: Prints date and time of last repo sync.
- reposync: Parallel repo sync using ionice and SCHED_BATCH.
- repopick: Utility to fetch changes from Gerrit.
- sort-blobs-list: Sort proprietary-files.txt sections with LC_ALL=C.
- installboot: Installs a boot.img to the connected device.
- installrecovery: Installs a recovery.img to the connected device.
EOF
}
function mk_timer()
{
local start_time=$(date +"%s")

25
build/soong/bin/hmm Normal file
View file

@ -0,0 +1,25 @@
function __print_tequila_functions_help() {
cat <<EOF
Additional tequilaOS functions:
- cout: Changes directory to out.
- mmp: Builds all of the modules in the current directory and pushes them to the device.
- mmap: Builds all of the modules in the current directory and its dependencies, then pushes the package to the device.
- mmmp: Builds all of the modules in the supplied directories and pushes them to the device.
- tequilagerrit: A Git wrapper that fetches/pushes patch from/to tequilaOS Gerrit Review.
- tequilarebase: Rebase a Gerrit change and push it again.
- githubremote: Add git remote for tequilaOS Github.
- gerritremote: Add git remote for tequilaOS Gerrit Review.
- aospremote: Add git remote for matching AOSP repository.
- cloremote: Add git remote for matching CodeLinaro repository.
- mka: Builds using SCHED_BATCH on all processors.
- mkap: Builds the module(s) using mka and pushes them to the device.
- cmka: Cleans and builds using mka.
- repodiff: Diff 2 different branches or tags within the same repo
- repolastsync: Prints date and time of last repo sync.
- reposync: Parallel repo sync using ionice and SCHED_BATCH.
- repopick: Utility to fetch changes from Gerrit.
- sort-blobs-list: Sort proprietary-files.txt sections with LC_ALL=C.
- installboot: Installs a boot.img to the connected device.
- installrecovery: Installs a recovery.img to the connected device.
EOF
}