Changeset 600339f5


Ignore:
Timestamp:
May 9, 2006, 11:20:58 PM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
23fc9445
Parents:
d55fbf9d
Message:

LCD Fixes

Location:
bootscripts
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/Changelog

    rd55fbf9d r600339f5  
    11jim - May 9, 2006
    22        * Add support for LCD Screens
     3        * Added support for RaQ3 LCD and Cobalt Panel Utils
    34
    45This is a new Changelog. The old one is now renamed to CHANGELOG.old.
  • bootscripts/Makefile

    rd55fbf9d r600339f5  
    134134        if [ ! -f ${EXTDIR}/sysconfig/lcd          ]; then install -m ${CONFMODE} lfs/sysconfig/lcd-raq2          ${EXTDIR}/sysconfig/lcd; fi
    135135
     136install-raq3:
     137        install -m ${MODE} lfs/init.d/setlcd        ${EXTDIR}/rc.d/init.d/
     138        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc0.d/K01setlcd
     139        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc1.d/S99setlcd
     140        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc2.d/S99setlcd
     141        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc3.d/S99setlcd
     142        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc4.d/S99setlcd
     143        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc5.d/S99setlcd
     144        ln -sf ../init.d/setlcd      ${EXTDIR}/rc.d/rc6.d/K01setlcd
     145        if [ ! -f ${EXTDIR}/sysconfig/lcd          ]; then install -m ${CONFMODE} lfs/sysconfig/lcd-raq3          ${EXTDIR}/sysconfig/lcd; fi
     146
    136147.PHONY: all create-dirs create-service-dir install install-consolelog \
    137         install-service-mtu minimal install-raq2
     148        install-service-mtu minimal install-raq2 install-raq3
  • bootscripts/lfs/init.d/functions

    rd55fbf9d r600339f5  
    137137        if [ "$LCD_PROG" ]; then
    138138                LCD_OUT2="[  OK  ]"
    139                 $LCD_PROG $LCD_OPTIONS "$LCD_OUT1" "$LCD_OUT2"
     139                $LCD_PROG "$LCD_OUT1" "$LCD_OUT2"
    140140        fi
    141141}
     
    148148        if [ "$LCD_PROG" ]; then
    149149                LCD_OUT2="[  FAIL  ]"
    150                 $LCD_PROG $LCD_OPTIONS "$LCD_OUT1" "$LCD_OUT2"
     150                $LCD_PROG "$LCD_OUT1" "$LCD_OUT2"
    151151        fi
    152152}
     
    158158        if [ "$LCD_PROG" ]; then
    159159                LCD_OUT2="[  WARN  ]"
    160                 $LCD_PROG $LCD_OPTIONS "$LCD_OUT1" "$LCD_OUT2"
     160                $LCD_PROG "$LCD_OUT1" "$LCD_OUT2"
    161161        fi
    162162        boot_mesg_flush "[ WARN ]"
  • bootscripts/lfs/sysconfig/lcd-raq2

    rd55fbf9d r600339f5  
    2020LCD_CHAR=16
    2121
    22 # What command option emulates echo -n
    23 #
    24 LCD_OPTION=" -n "
    25 
    2622# End /etc/sysconfig/lcd
Note: See TracChangeset for help on using the changeset viewer.