Deleted Added
full compact
pnp.4th (65618) pnp.4th (87636)
1\ Copyright (c) 2000 Daniel C. Sobral <dcs@freebsd.org>
2\ All rights reserved.
3\
4\ Redistribution and use in source and binary forms, with or without
5\ modification, are permitted provided that the following conditions
6\ are met:
7\ 1. Redistributions of source code must retain the above copyright
8\ notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17\ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18\ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19\ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20\ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21\ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23\ SUCH DAMAGE.
24\
1\ Copyright (c) 2000 Daniel C. Sobral <dcs@freebsd.org>
2\ All rights reserved.
3\
4\ Redistribution and use in source and binary forms, with or without
5\ modification, are permitted provided that the following conditions
6\ are met:
7\ 1. Redistributions of source code must retain the above copyright
8\ notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17\ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18\ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19\ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20\ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21\ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23\ SUCH DAMAGE.
24\
25\ $FreeBSD: head/sys/boot/forth/pnp.4th 65618 2000-09-08 17:13:24Z dcs $
25\ $FreeBSD: head/sys/boot/forth/pnp.4th 87636 2001-12-11 00:49:34Z jhb $
26
27pnpdevices drop
28
29: enumerate
30 pnphandlers begin
31 dup @
32 while
33 ." Probing " dup @ pnph.name @ dup strlen type ." ..." cr

--- 119 unchanged lines hidden (view full) ---

153 then
154 r> 0=
155 until
156;
157
158: load-pnp
159 0 to end_of_file?
160 reset_line_reading
26
27pnpdevices drop
28
29: enumerate
30 pnphandlers begin
31 dup @
32 while
33 ." Probing " dup @ pnph.name @ dup strlen type ." ..." cr

--- 119 unchanged lines hidden (view full) ---

153 then
154 r> 0=
155 until
156;
157
158: load-pnp
159 0 to end_of_file?
160 reset_line_reading
161 s" /boot/pnpid.conf" fopen fd !
161 s" /boot/pnpid.conf" O_RDONLY fopen fd !
162 fd @ -1 <> if
163 begin
164 end_of_file? 0=
165 while
166 read_line
167 check-pnpid
168 repeat
169 fd @ fclose
170 then
171;
172
162 fd @ -1 <> if
163 begin
164 end_of_file? 0=
165 while
166 read_line
167 check-pnpid
168 repeat
169 fd @ fclose
170 then
171;
172