This is the command dh_modaliases that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator
PROGRAMME:
Nom
dh_modaliases - scan kmod modaliases and provide a substvar for them
SYNOPSIS
dh_modaliases [debhelper Options]
DESCRIPTION
dh_modaliases is useful for packages that ship third-party kernel modules, either in
binary form, or as sources (with e. g. DKMS). It extracts the modules' modaliases from
either the compile .ko files themselves (for packages which ship them in compiled form,
grâce à info mod), or from a package file debian/paquet.modaliases (voir ci-dessous).
I creates a package substitution variable "${modaliases}" which you should add to
"debian/control" as
XB-Modaliases: ${modaliases}
This enables software which is looking for missing driver packages (such as Jockey or the
operating system installer) to identify which package(s) will provide a driver for a piece
of hardware, identified by its modalias.
RANGEMENT MODALIES DES DOSSIERS
If a package ships source code (using DKMS, module-assistant, etc.) instead of compiled
binary kernel modules, then dh_modaliases can't figure out the modaliases by scanning the
*.ko files, and you have to provide the modalias list manually as a package file
debian/paquet.modaliases.
The format matches the /lib/modules/`uname -r`/modules.alias file from the Linux kernel.
Exemples :
alias ssb:v1234id5678 snd_super_booster alias pci:v000010DEd0000004Esv*sd*bc03sc*i*
nvidia_current
You can generate such a list if you locally build and install this module, and then run
modinfo mymodname | perl -nae 'print "alias $1 mymodname\n" if /^alias:\s+(.*)$/'
(replacing "mymodname" with the actual module name).
OPTIONS
Les options standard de debhelper sont prises en charge.
Use dh_modaliases online using onworks.net services