Mainboard spezifische NVRAM Einstellungen

Aus VDR Wiki

Wechseln zu: Navigation, Suche

Inhaltsverzeichnis

Einleitung

Als ich heute versucht habe meinem VDR das NVRAM WakeUp beizubringen, habe ich gemerkt, dass es doch einige Tips und Tricks braucht, bis man NVRAM auf einem nicht direkt unterstützen Board eingerichtet hat. Zwar gibt es eine kleine Übersicht der Einstellungen schon unter NVRAM WakeUp, die mir aber nicht sehr viel weiter half. Deshalb nun diese Seite auf der sämtliche NVRAM relevanten Einstellungen je Mainboard gesammelt werden sollen.

allgemeine Konfiguration

Bei verwendung von Grub

/sbin/grub-set-default 1 && nvram-wakeup -C /etc/nvram-wakeup.conf --directisa -s $(( `date +%s`+ 10*60 )) && reboot

Bei verwendung von Lilo

Text kommt noch

Dadurch wird die WakeUp Zeit auf +10 Minuten in der Zukunft gesetzt, der PC rebootet und der Boot-Loader startet den APM halt bzw. Poweroff Kernel Eintrag, welcher den PC wieder abschaltet. Nach 5 Minuten sollte der PC dann automatisch hochfahren und den VDR Eintrag im Bootloader booten.

Hinweis
Hinweis

NVRAM zieht von der als WakeUP Zeitpunkt angeben Zeit automatisch 5 Minuten für das Starten des PCs ab. Wird also zb. 10:20 als Wakeup Zeitpunkt übergeben, weckt NVRAM den PCs schon um 10:15.

VDR Aufnahmen können also ganz normal programmiert werden, da NVRAM die Zeit zum Hochfahren bereits berüchsichtigt.


Mainboard spezifische Konfiguration

MSI MS-6178

Datei
/etc/nvram-wakeup.conf
################################################
##  Mainboard autodetection information:
##
##    - Mainboard vendor:   "MICRO-STAR INTERNATIONAL CO., LTD"
##    - Mainboard type:     "MS-6178"
##    - Mainboard revision: ""
##    - BIOS vendor:        "Award Software International, Inc."
##    - BIOS version:       "6.00 PG"
##    - BIOS release:       "05/23/2001"

addr_chk_h  = 0x6F
addr_chk_l  = 0x70
addr_stat   = 0x46
addr_day    = 0x47
addr_hour   = 0x48
addr_min    = 0x49
need_reboot = ON_STAT


ASUS M2NPV-VM

  • Bootloader für APM halt konfigurieren
Datei
/etc/nvram-wakeup.conf
################################################
##  Mainboard autodetection information:
##
##    - Mainboard vendor:   "ASUSTek Computer INC."
##    - Mainboard type:     "M2NPV-VM"
##    - Mainboard revision: "1.xx"
##    - BIOS vendor:        "Phoenix Technologies, LTD"
##    - BIOS version:       "ASUS M2NPV-VM ACPI BIOS Revision 0405"
##    - BIOS release:       "08/25/2006"

addr_stat        = 0x4A
shift_stat       = 3
addr_day         = 0x4C
addr_hour        = 0x4D
addr_min         = 0x4E
addr_sec         = 0x4F
addr_chk_h       = 0x6D   
addr_chk_l       = 0x6E
need_reboot      = ON_ANY_CHANGE


MSI MS-6378

  • Bootloader für APM halt konfigurieren
Datei
/etc/nvram-wakeup.conf
################################################
##  Mainboard autodetection information:
##
##    - Mainboard vendor:   "MICRO-STAR INTERNATIONAL CO., LTD"
##    - Mainboard type:     "MS-6378"
##    - Mainboard revision: ""
##    - BIOS vendor:        "Award Software International, Inc."
##    - BIOS version:       "6.00 PG"
##    - BIOS release:       "05/23/2001"

addr_stat   = 0x47
shift_stat  = 5
addr_day    = 0x51
addr_hour   = 0x41
addr_min    = 0x40
addr_sec    = 0x3F
addr_chk_h  = 0x6D   # guessed
addr_chk_l  = 0x6E
need_reboot = ON_ANY_CHANGE


Shuttle SK21G

  • Bootloader für APM halt konfigurieren
Datei
/etc/nvram-wakeup.conf
################################################
##  Mainboard autodetection information:
##
##    - Mainboard vendor:   "Shuttle Inc"
##    - Mainboard type:     "FX21V10"
##    - Mainboard revision: ""
##    - BIOS vendor:        "Phoenix Technologies, LTD"
##    - BIOS version:       "6.00 PG"
##    - BIOS release:       "11/08/2005"

need_reboot      = ON_ANY_CHANGE
addr_chk_h       = 0x6D
addr_chk_l       = 0x6E
addr_stat        = 0x47
shift_stat       = 3
addr_day         = 0x48
addr_hour        = 0x49
addr_min         = 0x4A
addr_sec         = 0x4B
upper_method = VT8235_37


Boot-Loader konfiguration

APM halt

Grub

Datei
/boot/grub/grub.conf
default saved
timeout 1

title=VDR 
root (hd0,0)
kernel (hd0,0)/bzImage  root=/dev/hda3

title=APM halt
root (hd0,0)
savedefault 0
cat /boot/grub/default
halt


Lilo

Datei
/etc/lilo.conf
Text kommt noch


Poweroff Kernel

Grub

Datei
/boot/grub/grub.conf
Text kommt noch


Lilo

Datei
/etc/lilo.conf
Text kommt noch


Links

  1. Projektseite nvram
  2. vdr-wiki.de nvram
  3. Vorschlag für ein einfaches shutdown skript