Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

hil(4) [netbsd man page]

HIL(4)							   BSD Kernel Interfaces Manual 						    HIL(4)

NAME
hil -- introduction to HP-HIL support SYNOPSIS
hp300 hil* at intio? hilkbd* at hil? hilms* at hil? hilid* at hil? DESCRIPTION
The hil interface provides access to the ``Human Interface Loop'' controller found on many HP workstations. It provides generic HIL management and interfaces for child devices, such as keyboards, button boxes, mice, graphics tablet, and ID modules. NetBSD provides support for the following devices: hilid(4) HIL ID module device hilkbd(4) HIL keyboard device hilms(4) HIL mouse and graphics tablet device SEE ALSO
intro(4) BSD
February 9, 2011 BSD

Check Out this Related Man Page

HILKBD(4)						   BSD Kernel Interfaces Manual 						 HILKBD(4)

NAME
hilkbd -- HIL keyboard device SYNOPSIS
hilkbd* at hil? wskbd* at hilkbd? option HILKBD_LAYOUT=XXX DESCRIPTION
This driver supports HIL keyboards within the wscons(4) framework. It doesn't provide direct device driver entry points, but makes its func- tions available through the internal wskbd(4) interface. The hilkbd driver supports a number of different key mappings. By default, the layout corresponding to the keyboard model as probed by the hilkbd driver will be used. A different layout can be chosen either with the kernel option ``HILKBD_LAYOUT'' at compile time, or with the wsconsctl(8) utility (variable: ``keyboard.encoding'') at runtime. The supported key mappings are at this time: KB_DE (de) German with ``dead accents''. KB_FR (fr) French with ``dead accents''. KB_SV (sv) Swedish. KB_UK (uk) British. KB_US (us) English/US keyboard mapping. The KB_DE mapping can be used in the KB_NODEAD (.nodead) variant. This switches off the ``dead accents''. EXAMPLES
To set a Swedish keyboard mapping, use wsconsctl keyboard.encoding=sv. To set it at kernel build time, regardless of what keyboard is plugged, add the following to the kernel configuration file: option HILKBD_LAYOUT="KB_SV" SEE ALSO
hil(4), intro(4), wskbd(4), wsconsctl(8) BUGS
The list of built-in mappings is incomplete and has grown as people submitted information about their particular layout. The Swedish and British layout have been reconstructed from tables in the old HIL code present in the hp300 port, and have not been tested. BSD
February 9, 2011 BSD
Man Page

13 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Cd

why is 'cd' a shell built in and not an executable? (27 Replies)
Discussion started by: clickonline1
27 Replies

2. Programming

Controlling child processes

Hello all, I am trying to create n child processes and control them from a parent process; say make child 3 print its pid and then child 5 do the same and some other stuff. Is there a way to accomplishing this after all the child processes are created via a call to fork(). Thank you, FG (23 Replies)
Discussion started by: forumGuy
23 Replies

3. SuSE

Errors while trying to install software on SuSE 9.2 Pro

First off I try to install XTheater on SuSE 9.2 Pro I run the ./configure command and this is what I get chris@linux:~/Desktop/Xtheater-0.9.2> ./configure loading cache ./config.cache checking for a BSD compatible install... (cached) /usr/bin/install -c checking whether build environment is... (25 Replies)
Discussion started by: CTroxtell21
25 Replies

4. UNIX for Dummies Questions & Answers

Problem with while loop and SQL

Connected to oracle database sqlplus << EOF $CONNECTSTR set heading off set trimspool on set feedback off select ID,DATE from sysadm.TEST where VALUE = 'A' order by ID; value_id = ID value_date = DATE EOF 1. Is it possible to reference the values, ID,DATE in unix shell script. 2.... (20 Replies)
Discussion started by: nandajk
20 Replies

5. Shell Programming and Scripting

Problem with while loop in shell script

Hi All, How to read a file upto last line(End Of Line) I wrote below program: cat R2_20060719.610.txt | while read LINE do echo "$LINE" done above code reading all lines from a file and skipping last line...... is there anything wrong in my code. Please help me out from this... (20 Replies)
Discussion started by: rkrgarlapati
20 Replies

6. Solaris

Problem while changing the password in solaris 10

Hi guys, there are some user in my network but they are not able to change their password but by root i am able to change the password. while trying to change the password this massage is showing Sorry, wrong passwd Permission denied please help me out as i am new for Sun solaris ... (31 Replies)
Discussion started by: daya.pandit
31 Replies

7. Shell Programming and Scripting

Include white spaces while using CUT command

Hi I tried to extract 19 characters (default) enclosed with in tag from a file using cut command. If the characters comprises of double space, the cut command gives the output with a single spacing. file 1 <name>Kumar Rajasekaran</name> cut -c7-26 "file1" the out put i received is ... (48 Replies)
Discussion started by: Sekar1
48 Replies

8. Shell Programming and Scripting

Condition checking issue while if

hi, i am using a simple condition end_ct=`sqlplus -s $ORACLE_USER/$ORACLE_PASS@$ORACLE_SID << EOF select description from bravo_statistics where trunc(time_stamp)=trunc(sysdate)-1 and description='END CAT'; EOF` echo $end_ct; echo... (30 Replies)
Discussion started by: lovelysethii
30 Replies

9. Shell Programming and Scripting

Problem scripting a copy and renaming shell executable

I also posted this on macrumors forum, then i realized that this is a more suitable forum for matters like this. I apologize for the username, I was looking at a bag of doritos when it asked me for a username. lol I need a program (see below for what I've tried) and I think a shell program will... (23 Replies)
Discussion started by: ilovedoritos
23 Replies

10. UNIX for Dummies Questions & Answers

Tar stucks while extracting

I am trying to extract tar file of size 167MB but most of the times tar command stuck while extraction. Command: new 24389 24369 0 Nov21 ? 00:00:00 tar -xf NCSanJose1_req_rep.tar While running process with gdb following back trace was obtain: ... (24 Replies)
Discussion started by: freebee
24 Replies

11. Shell Programming and Scripting

UNIX Shell Scripting (Solaris) for File Checking

Hi guys, I'm sorry but i badly need your help. I am assigned to do a basic shell script in my job but sadly i don't have any idea on what it is because i am an electronics engineer, but i googled all of it, ask my friends but i cant finalize my scripts. so do please help me. The requirement... (47 Replies)
Discussion started by: daveaztig14
47 Replies

12. Shell Programming and Scripting

How to tail sed and awk in one line?

Hello, I am trying to create an iptables script with tail ,sed and awk. 1st Request: Search keyword "secret" in access.log file 2nd Request: Get first column matching lines (ip address) 3rd Request: Save it to a file This is what I did so far: grep.sh #!/bin/bash while true; do tail... (23 Replies)
Discussion started by: baris35
23 Replies

13. UNIX for Beginners Questions & Answers

How to make paste -d second file print down while looping?

]I would like to make the second file label 'b' print down the first file label 'a', like shifting down the file creating new lines I want it to print all the way down until the first line of the second file hit the last line of the first file. Would I have to put this into a file itself or could I... (24 Replies)
Discussion started by: bigvito19
24 Replies