diff options
| author | Dirk von Suchodoletz | 2006-04-09 16:08:56 +0200 |
|---|---|---|
| committer | Dirk von Suchodoletz | 2006-04-09 16:08:56 +0200 |
| commit | b2a4079c3d1da7632756a31c9c82ffe3f949eadb (patch) | |
| tree | c6b18993356a4c5543e9128fda84cec6ef96e0fd /initrd/initrd-stuff/bin/hwautocfg | |
| parent | fix for ip= line configuration problem with etherboot (diff) | |
| download | core-b2a4079c3d1da7632756a31c9c82ffe3f949eadb.tar.gz core-b2a4079c3d1da7632756a31c9c82ffe3f949eadb.tar.xz core-b2a4079c3d1da7632756a31c9c82ffe3f949eadb.zip | |
added bootlocal script (user def. script to run in normal boot), ensured
ash shell compatibility of scripts ...
git-svn-id: http://svn.openslx.org/svn/openslx/ld4@173 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initrd/initrd-stuff/bin/hwautocfg')
| -rwxr-xr-x | initrd/initrd-stuff/bin/hwautocfg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/initrd/initrd-stuff/bin/hwautocfg b/initrd/initrd-stuff/bin/hwautocfg index 69094dc5..fd1ab828 100755 --- a/initrd/initrd-stuff/bin/hwautocfg +++ b/initrd/initrd-stuff/bin/hwautocfg @@ -134,25 +134,25 @@ if [ -n "$hw_monitor" ] ; then [ -z "$VS" ] && VS=${hw_monitor%hz*} VS=${VS##* } MR=${hw_monitor##* } - msg="Please check your predefined monitor settings ($hw_monitor): Manual\n\ + hwmsg="Please check your predefined monitor settings ($hw_monitor): Manual\n\ configurtion of display" else # gather monitor information automatically ddcprobe > /tmp/ddcprobe - msg="Please check the output of ddcprobe. The settings where not \ + hwmsg="Please check the output of ddcprobe. The settings where not \ complete\n or non existant. The $0 script tried for a fully automatic\n\ configuration of display" fi -if [ -z "$HS" ] ; then error " $msg timings requested but could not \ +if [ -z "$HS" ] ; then error " $hwmsg timings requested but could not \ establish\n horizontal frequency in kHz." nonfatal HS=${HSYNCRANGE} fi -if [ -z "$VS" ] ; then error " $msg timings but could not establish \ +if [ -z "$VS" ] ; then error " $hwmsg timings but could not establish \ vertical\n frequency in Hz." nonfatal VS=${VSYNCRANGE} fi -if [ -z "$MR" ] ; then error " $msg resolution requested but not \ +if [ -z "$MR" ] ; then error " $hwmsg resolution requested but not \ established." nonfatal MR=${MAXRES} fi |
