Mainboard spezifische NVRAM Einstellungen

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 11: Zeile 11:
 
Dadurch wird die WakeUp Zeit auf +10 Minuten in der Zukunft gesetzt, der PC rebootet und Grub startet den APM halt Eintrag, welcher den PC per APM wieder abschaltet. Nach 10 Minuten sollte der PC dann automatisch hochfahren und den VDR Eintrag im Grub booten.
 
Dadurch wird die WakeUp Zeit auf +10 Minuten in der Zukunft gesetzt, der PC rebootet und Grub startet den APM halt Eintrag, welcher den PC per APM wieder abschaltet. Nach 10 Minuten sollte der PC dann automatisch hochfahren und den VDR Eintrag im Grub booten.
  
== Bootloader konfiguration ==
 
=== APM halt ===
 
==== Grub ====
 
'''/boot/grub/grub.conf'''
 
<pre>
 
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
 
</pre>
 
==== Lilo ====
 
<pre>Text kommt noch</pre>
 
=== Reboot Kernel ===
 
==== Grub ====
 
<pre>Text kommt noch</pre>
 
==== Lilo ====
 
<pre>Text kommt noch</pre>
 
  
 
== Mainboard spezifische Konfiguration ==
 
== Mainboard spezifische Konfiguration ==
Zeile 63: Zeile 38:
 
need_reboot = ON_STAT
 
need_reboot = ON_STAT
 
</pre>
 
</pre>
 +
== Bootloader konfiguration ==
 +
=== APM halt ===
 +
==== Grub ====
 +
'''/boot/grub/grub.conf'''
 +
<pre>
 +
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
 +
</pre>
 +
==== Lilo ====
 +
<pre>Text kommt noch</pre>
 +
=== Reboot Kernel ===
 +
==== Grub ====
 +
<pre>Text kommt noch</pre>
 +
==== Lilo ====
 +
<pre>Text kommt noch</pre>
 +
 
==Links==
 
==Links==
 
* [http://sf.net/projects/nvram-wakeup/ Projektseite nvram]
 
* [http://sf.net/projects/nvram-wakeup/ Projektseite nvram]
 
* [[NVRAM_WakeUp | vdr-wiki.de nvram]]
 
* [[NVRAM_WakeUp | vdr-wiki.de nvram]]
 
[[Kategorie:Software]]
 
[[Kategorie:Software]]

Version vom 27. Mai 2006, 17:19 Uhr

Inhaltsverzeichnis

Einleitung

Als ich heute Versucht habe meinem VDR das NVRAM WakeUp beizubringen, habe ich gemerkt das 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 nach Mainboard gesammelt werden sollen.

allgemeine Konfiguration

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

Dadurch wird die WakeUp Zeit auf +10 Minuten in der Zukunft gesetzt, der PC rebootet und Grub startet den APM halt Eintrag, welcher den PC per APM wieder abschaltet. Nach 10 Minuten sollte der PC dann automatisch hochfahren und den VDR Eintrag im Grub booten.


Mainboard spezifische Konfiguration

MSI MS-6178

/etc/nvram.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

Bootloader konfiguration

APM halt

Grub

/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

Text kommt noch

Reboot Kernel

Grub

Text kommt noch

Lilo

Text kommt noch

Links