mars_nwe-0.95.pl00
This commit is contained in:
9
examples/config.h
Normal file
9
examples/config.h
Normal file
@@ -0,0 +1,9 @@
|
||||
/* config.h: 22-Nov-95 */
|
||||
/* this config is needed by make and by cc */
|
||||
#define FILENAME_NW_INI "./nw.ini" /* full name of ini (conf) file */
|
||||
#define PATHNAME_PROGS "." /* path location of progs */
|
||||
#define PATHNAME_BINDERY "." /* path location of bindery */
|
||||
|
||||
#define MAX_CONNECTIONS 5 /* max. Number of Connections */
|
||||
#define MAX_NW_VOLS 10 /* max. Volumes */
|
||||
|
||||
25
examples/mk.li
Executable file
25
examples/mk.li
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
# mk.li 16-Nov-95 ###
|
||||
#
|
||||
|
||||
mk()
|
||||
{
|
||||
MYBASE=`pwd`;
|
||||
ERRFILE=$TMP/`basename $MYBASE`.err;
|
||||
rm -f $ERRFILE;
|
||||
if [ ! -d obj ] ; then mkdir obj; fi
|
||||
cd obj;
|
||||
$MAKE -f ../makefile.unx $@ 2>&1 | tee $ERRFILE;
|
||||
cd ..;
|
||||
chmod 666 $ERRFILE
|
||||
}
|
||||
|
||||
export CC=cc
|
||||
export CCP="cc -E"
|
||||
#export CFLAGS="-pipe -O2 -fomit-frame-pointer"
|
||||
#problems gcc2.5.8 ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
export CFLAGS="-pipe"
|
||||
export HOSTCFLAGS="-DLINUX"
|
||||
export TMP=/tmp
|
||||
MAKE=make
|
||||
mk $@
|
||||
53
examples/nw.ini
Normal file
53
examples/nw.ini
Normal file
@@ -0,0 +1,53 @@
|
||||
# (C)opyright 1993, 1995, Martin Stover, Softwareentwicklung, Marburg
|
||||
# MAR.S NW-Server Emulator
|
||||
# Einfache Konfiguration, alles ab # ist Kommentar.
|
||||
# Jeder Eintrag beginnt mit einer Zahl und dann folgt der Inhalt.
|
||||
# simple configuration, all after # is ignored.
|
||||
# Every entry begins with a number and then the meet follows.
|
||||
# entry 1 VOLUMES (max. 5) entry 1
|
||||
# Volumename Volumepath Options (k=lowercase)
|
||||
1 SYS /u3/SYS/ # SYS 1
|
||||
####################################
|
||||
# Die folgenden Volumes sind optional.
|
||||
# the following volumes are optional.
|
||||
#1 SYS1 /u3/SYS1/ # SYS 2
|
||||
#1 TMP /tmp/ k # TMP downshift
|
||||
#1 CD /cdrom k # CDROM allways downshift
|
||||
# Falls lowercase nicht gesetzt ist, werden GROSSBUCHSTABEN erwartet.
|
||||
# If lowercase is not set then all filenames are upshift.
|
||||
# SYS, der Name darf auch anders lauten, muss
|
||||
# eingerichtet sein mit den folgenden Verzeichnissen:
|
||||
# LOGIN, PUBLIC, SYSTEM, MAIL.
|
||||
# SYS, may be named diffent but must be setup and must
|
||||
# contains the following Directories: LOGIN, PUBLIC, SYSTEM, MAIL
|
||||
#############################
|
||||
# Eintrag 2 fuer den Servername.
|
||||
# falls nicht gesetzt, wird hostname (in GROSSBUCHSTABEN) verwendet.
|
||||
# entry 2 for the servername. If not set, then the hostname (upshift)
|
||||
# will be taken.
|
||||
#2 MAR1 # Servername
|
||||
# entry 4: #
|
||||
# NETWORK NUMBER, DEVICE, Frame-Typ
|
||||
4 0x10 eth0 802.3
|
||||
# Frames=ethernet_ii od. 802.2 od. 802.3 od SNAP (default 802.3)
|
||||
# ACHTUNG ethernet_ii geht leider seit LINUX > V 1.1.44 nicht mehr.
|
||||
# aktuell getestet nur mit 802.3 !!!!!
|
||||
# actual testet with 802.3 !!
|
||||
######################################
|
||||
# z.Z. werden _alle_ Connections mit folgender UID bzw. GID gestartet.
|
||||
# wird noch geaendert werden.
|
||||
# _all_ connections will be started with the following UID and GID.
|
||||
# will be change one time.
|
||||
10 200 # GID
|
||||
11 201 # UID
|
||||
#############################
|
||||
# entry 21 for simple print queues, dynamic
|
||||
# QUEUE NAME, Q_DIRECTORY, UNIX-print-command (pipe)
|
||||
21 Q1 SYS:/PRINT/Q1 lpr
|
||||
#21 Q2 SYS:/PRINT/Q2 lpr -C printer2
|
||||
#############################
|
||||
# >= 100 debug flags
|
||||
100 0 # debug IPX KERNEL (0 / 1)
|
||||
101 1 # debug NWSERV
|
||||
102 0 # debug NCPSERV
|
||||
103 0 # debug NWCONN
|
||||
Reference in New Issue
Block a user