918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change
on this file since c916af9 was
4ff56c5,
checked in by ramon <ramongomez@…>, 10 years ago
|
#541: Integrar código del ticket:541:
- Soporte para instalación automática de módulos para una versión determinada del kernel, incluidos en
/opt/opengnsys/client/lib/modules/ VersiónKernel .
- Post-configuración por defecto de Mac OS X en script
configureOs .
- Soporte para obtener versiones de aplicaciones en inventario de software de Mac OS.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4462 a21b9725-9963-47de-94b9-378ad31fedc9
|
-
Property mode set to
100755
|
File size:
575 bytes
|
Rev | Line | |
---|
[8bb3d2c] | 1 | #!/bin/bash |
---|
| 2 | #/** |
---|
| 3 | #@file loadmodules.sh |
---|
| 4 | #@brief Script de inicio para cargar módulos complementarios del kernel. |
---|
| 5 | #@version 1.0 |
---|
| 6 | #@author Ramon Gomez, ETSII Universidad de Sevilla |
---|
| 7 | #@date 2010-01-26 |
---|
[4ff56c5] | 8 | #@version 1.0.5 - Cargar módulos específicos para el cliente. |
---|
| 9 | #@author Ramon Gomez, ETSII Universidad de Sevilla |
---|
| 10 | #@date 2013-11-11 |
---|
[8bb3d2c] | 11 | #*/ |
---|
| 12 | |
---|
| 13 | |
---|
[c39fac3] | 14 | echo "${MSG_LOADMODULES:-.}" |
---|
[8bb3d2c] | 15 | |
---|
| 16 | # Módulo del ratón. |
---|
[c39fac3] | 17 | modprobe psmouse 2>/dev/null |
---|
[914d834] | 18 | |
---|
[4ff56c5] | 19 | # Cargar módulos específicos del kernel del cliente. |
---|
| 20 | for m in $OGLIB/modules/$(uname -r)/*.ko; do |
---|
| 21 | [ -r $m ] && insmod $m &>/dev/null |
---|
| 22 | done |
---|
[8bb3d2c] | 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.