OSDN Git Service

[add] : Added share package for i686.
[alterlinux/alterlinux.git] / config
1 #!/usr/bin/env bash
2 #
3 # Yamada Hayao
4 # Twitter: @Hayao0819
5 # Email  : hayao@fascode.net
6 #
7 # (c) 2019-2020 Fascode Network.
8 #
9 # config
10 #
11 # Overwrites the first to read and set the build script
12 # This configuration file follows the bash syntax.
13 #
14
15 # OS name used for startup screen, etc.
16 os_name="Alter Linux"
17
18 # OS name used for the name of the image file.
19 iso_name=alterlinux
20
21 # Image file label
22 iso_label="ALTER_$(date +%Y%m%d)"
23
24 # Image file creator information
25 iso_publisher='Fascode Network <https://fascode.net>'
26
27 # Image file name (not file name)
28 iso_application="${os_name} Live/Rescue CD"
29
30 # Image file version
31 iso_version=$(date +%Y.%m.%d)
32
33 # Directory name used for installation
34 install_dir=alter
35
36 # Work directory to execute pacstrap etc
37 work_dir=work
38
39 # Directory to output image file and checksum
40 out_dir=out
41
42 # Key used for signature
43 gpg_key=
44
45 # AlterLinux settings
46 password=alter
47
48 # Set to true to enable plymouth.(-b)
49 boot_splash=false
50
51 # Set the theme name of plymouth.
52 theme_name="alter-logo"
53
54 # Set the package name of the plymouth theme.
55 # Install only if plymouth is enabled.
56 # If it is not packaged, leave this item empty and place those files in airootfs.
57 theme_pkg="plymouth-theme-alter-logo-git"
58
59 # See the `mksquashfs` help for details on these items.
60 sfs_comp="zstd"
61 sfs_comp_opt=""
62
63 # Set the kernel that live session use.
64 # Please don't set anything if you want to use normal kernel.
65 # As of February 23, 2020, the available kernels are lts, zen, ck, , rt and lqx.
66 kernel=zen
67
68 # Set debug mode.
69 # This setting can only be set to true or false.
70 # When enabled, bash debug mode is enabled, making it easier to identify which command caused the error.
71 debug=false
72
73 # Set the Japanese mode.
74 # When this is enabled, the packages in the japanese package list will be installed.
75 # A file for Japanese input is added.
76 japanese=false
77
78 # Enable post-build cleaning.
79 # When enabled, airootfs in the working directory is deleted after squashfs is created.
80 cleaning=false
81
82 # Set the user's default shell.
83 usershell="/bin/bash"
84
85
86 # Set whether to check the build.
87 # If true, do not check. If false, confirm.
88 noconfirm=false