From: Paul Mackerras Date: Mon, 18 Dec 1995 23:58:43 +0000 (+0000) Subject: new readme for new code for SunOS 4 X-Git-Tag: RELEASE_2_3_6~557 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=b22e7afb67bcf842bf8c9194f4447b2e57978c3d new readme for new code for SunOS 4 --- diff --git a/README.sun b/README.sun deleted file mode 100644 index 3bc2e2e..0000000 --- a/README.sun +++ /dev/null @@ -1,46 +0,0 @@ -This file describes the installation process for ppp-2.2 on systems -running SunOS 4.x (or the equivalent). This package does not -currently work under Solaris 2. - -The STREAMS modules in the sunos directory provide kernel support for -PPP on SunOS 4.x systems. They have been tested under SunOS 4.1.3 on -a SparcStation 10. They should work under earlier SunOS 4.x systems, -but no guarantees are given. - -The easiest way to install these modules is to load them into the -running kernel using the `modload' command. They can alternatively be -linked into the kernel image, but this requires rebuilding the kernel. - - -Installation. -************* - -1. Run the configure script and make the user-level programs and the -kernel modules. - - ./configure - make - -2. Install the pppd and chat programs (you need to be root to do this): - - make install - -3. Load the ppp module (you need to be root for this too). In the -sunos directory, do: - - /usr/etc/modload ppp_driver.o - -You will want to do this "modloading" in your /etc/rc.local file -once you have everything installed. The ppp module is copied to -/usr/local/etc by default, so you can put something like the following -in /etc/rc.local: - - if [ -f /usr/local/etc/ppp_driver.o ]; then - /usr/etc/modload /usr/local/etc/ppp_driver.o - fi - -On some systems, /usr/local/etc is mounted read-only. On such -systems, add `-o /etc/ppp/ppp_driver' to the modload command line. - -NOTE: pppstats now works differently, so there is no need to use the --sym flag to modload, as required with earlier versions. diff --git a/README.sunos4 b/README.sunos4 new file mode 100644 index 0000000..e6d4b20 --- /dev/null +++ b/README.sunos4 @@ -0,0 +1,47 @@ +This file describes the installation process for ppp-2.2 on systems +running SunOS 4.x (or the equivalent). + +The STREAMS modules in the sunos4 directory provide kernel support for +PPP on SunOS 4.x systems. They have been tested under SunOS 4.1.3 on +a SparcStation 1+. They should work under earlier SunOS 4.x systems, +but no guarantees are given. + +These modules are designed to be loaded into the running kernel using +the `modload' command. + + +Installation. +************* + +1. Run the configure script and make the user-level programs and the +kernel modules. + + ./configure + make + +2. Install the pppd, pppstats chat programs and the loadable module +object files (you need to be root to do this): + + make install + +By default, the programs and the loadable module object files go into +/usr/local/etc. Doing `make install' also copies a script called +ppp.INSTALL into /dev, and makes ppp.LOAD, ppp.UNLOAD, ppp.MKDEV and +ppp.RMDEV links to it. + +3. Load the ppp modules (you need to be root for this too): + + /dev/ppp.LOAD + +You will want to do this in your /etc/rc.local file once you have +everything installed. I suggest you put something like the following +in /etc/rc.local (or /etc/loadable, if you have one): + + if [ -f /dev/ppp.AUTOLOAD ]; then + /dev/ppp.LOAD + fi + +and then create a /dev/ppp.AUTOLOAD file with the command + + touch /dev/ppp.AUTOLOAD +