-
Notifications
You must be signed in to change notification settings - Fork 28
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
3 changed files
with
51 additions
and
52 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,21 @@ | ||
usage build.sh [options] [channel] | ||
|
||
A channel is a profile of AlterISO settings. | ||
|
||
General options: | ||
-b | --boot-splash Enable boot splash | ||
-e | --cleanup | --cleaning Enable post-build cleaning | ||
-r | --tarball Build rootfs in tar.xz format | ||
-h | --help This help message and exit | ||
|
||
-a | --arch <arch> Set iso architecture | ||
-c | --comp-type <comp_type> Set SquashFS compression type (gzip, lzma, lzo, xz, zstd) | ||
-g | --gpgkey <key> Set gpg key | ||
-l | --lang <lang> Specifies the default language for the live environment | ||
-k | --kernel <kernel> Set special kernel type. See below for available kernels | ||
-o | --out <out_dir> Set the output directory | ||
-p | --password <password> Set a live user password | ||
-t | --comp-opts <options> Set compressor-specific options. | ||
-u | --user <username> Set user name | ||
-w | --work <work_dir> Set the working directory | ||
|
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 @@ | ||
|
||
Debug options: Please use at your own risk. | ||
-d | --debug Enable debug messages | ||
-x | --bash-debug Enable bash debug mode(set -xv) | ||
--channellist Output the channel list and exit | ||
--config Load additional config file | ||
--[no]gitversion Add Git commit hash to image file version | ||
--logpath <file> Set log file path (use with --log) | ||
--[no]log (No) log ;re-run script with tee | ||
--msgdebug Enables output debugging | ||
--noaur Ignore aur packages (Use only for debugging) | ||
--nocolor No output colored output | ||
--[no]confirm (No) check the settings before building | ||
--nochkver No check the version of the channel | ||
--nodebug Disable all debug messages | ||
--noefi No efi boot (Use only for debugging) | ||
--noloopmod No check and load kernel module automatically | ||
--[no]depend (No) check package dependencies before building | ||
--noiso No build iso image (Use with --tarball) | ||
--nosigcheck No pacman signature check | ||
--pacman-debug Enable pacman debug mode | ||
--normwork No remove working dir | ||
--nopkgbuild Ignore PKGBUILD (Use only for debugging) | ||
--tar-type <comp_type> Set compression type (gzip, lzma, lzo, xz, zstd) | ||
--tar-opts <option> Set tar command argument (Use with --tarball) | ||
--add-module <module> Load additional modules (Separated by ",") | ||
|
||
Many packages are installed from AUR, so specifying --noaur can cause problems. |