Note: This project only carries RebornOS-specific configuration except for the installer packaging files (PKGBUILD, build scripts), icons, and launch scripts. For the rest of the installer's source code and for the above exceptions, please use the calamares-core project.
Note: It is recommended that all module-specific configuration (
.conf
) files in theetc/calamares/modules
directory display the URL to the upstream configuration file at the top (for example:# https://github.com/calamares/calamares/blob/calamares/src/modules/welcomeq/welcomeq.conf
) so that developers can refer to the latest configuration easily.
In order to download the source code to your local computer for testing, or for development, you can clone from the remote repository using either SSH, or HTTPS. Below are instructions on how to do so using Gitlab hosted code as remote.
git clone https://github.com/RebornOS-Developers/calamares-configuration-rpi.git
OR
git clone [email protected]:RebornOS-Developers/calamares-configuration-rpi.git
Change to the project directory (cd calamares-configuration-rpi
) and run any of the below scripts:
-
sh packaging/setup.sh <MODE>
: Builds and installs a package -
sh packaging/build-package.sh <MODE>
: Just builds a package without installing it locally -
sh packaging/install-package.sh <MODE>
: Just installs a package locally, except if no built package is detected, a package is built. -
where
<MODE>
can be one of the belowlocal
: Selects calamares-configuration-rpi-local from the local project that you have cloned already.
stable
: Selects calamares-configuration-rpi from the git tag corresponding to thepkgver
specified in the PKGBUILD. Ifpkgver=0.1.2
, then the git tagv0.1.2
is used for packaging.
Note: Any additional parameters passed to the above scripts are automatically sent to
makepkg
orpacman
(whichever is applicable).