Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 2.69 KB

README.md

File metadata and controls

43 lines (29 loc) · 2.69 KB

Archlinux Driver Manager

A tool to detect and install drivers for hardware on Arch Linux.

Discord Server License: MPL v2.0 GitHub release (latest by date) Release Pre-Release (Git)

Note: This project should carry any RebornOS-specific configuration for archlinux-driver-manager. Refer to the archlinux-driver-manager project for other non-RebornOS-specific files.

Cloning

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.

HTTPS

git clone https://github.com/RebornOS-Developers/archlinux-driver-manager-db.git 

OR

SSH

git clone [email protected]:RebornOS-Developers/archlinux-driver-manager-db.git

Packaging

Change to the project directory (cd archlinux-driver-manager-db) 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 below

    1. local: Selects archlinux-driver-manager-db-local from the local project that you have cloned already.
    2. git: Selects archlinux-driver-manager-db-git from the latest git commit.
    3. stable: Selects archlinux-driver-manager-db from the git tag corresponding to the pkgver specified in the PKGBUILD. If pkgver=0.0.1, then the git tag v0.0.1 is used for packaging.

Note: Any additional parameters passed to the above scripts are automatically sent to makepkg or pacman (whichever is applicable).