Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rawserial driver for lcdproc #684

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sysutils/pfSense-pkg-LCDproc/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $FreeBSD$

PORTNAME= pfSense-pkg-LCDproc
PORTVERSION= 0.10.7
PORTVERSION= 0.10.8
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
6 changes: 6 additions & 0 deletions sysutils/pfSense-pkg-LCDproc/files/usr/local/pkg/lcdproc.inc
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,12 @@ function sync_package_lcdproc() {
$config_text .= "Device={$realport}\n";
$config_text .= "Size={$lcdproc_config['size']}\n";
break;
case "rawserial":
$config_text .= "[{$lcdproc_config['driver']}]\n";
$config_text .= "Device={$realport}\n";
$config_text .= "Size={$lcdproc_config['size']}\n";
$config_text .= "UpdateRate=1\n";
break;
case "sdeclcd":
$config_text .= "[{$lcdproc_config['driver']}]\n";
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@
'NoritakeVFD' => 'NoritakeVFD',
'picolcd' => 'picolcd',
'pyramid' => 'pyramid',
'rawserial' => 'rawserial'
'sdeclcd' => 'Watchguard Firebox with SDEC',
'sed1330' => 'sed1330',
'sed1520' => 'sed1520',
Expand Down