Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 809 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 809 Bytes

Converting Debian dkms packages to binary packages

This tool converts Debian dkms packages to binary packages. The generated packages are compatible with code-signing from Debian.

For configuration options look into config.yaml.

Needed tools

  • Docker

Usage

  • Build docker container: docker build -t dkms-12 .
  • Make sure that repo-config for the internal repositories is present
  • Run container:
docker run \
    -v $(pwd)/packages:/packages \
    -v $(pwd)/config.yaml:/config.yaml \
    -v $(pwd)/debian-template:/debian-template \
    -v $(pwd)/broadcom-sta-template:/broadcom-sta-template \
    -v $(pwd)/nvidia-template:/nvidia-template \
    -v $(pwd)/repo-config:/repo-config \
    --network="host" \
    --rm -it dkms-12