Searched hist:1998 (Results 126 - 150 of 1720) sorted by relevance

1234567891011>>

/freebsd-11-stable/stand/i386/loader/
H A Dversiondiff 39441 Thu Sep 17 23:52:16 MDT 1998 msmith Initial integration of the i386 bootloader and BTX.

- Discard large amounts of BIOS-related code in favour of the more compact
BTX vm86 interface.
- Build the loader module as ELF, although the resulting object is a.out,
make gensetdefs 32/64-bit sensitive and use a single copy of it.
- Throw away installboot, as it's no longer required.
- Use direct bcopy operations in the i386_copy module, as BTX
maps the first 16M of memory. Check operations against the
detected size of actual memory.
diff 38466 Fri Aug 21 03:17:42 MDT 1998 msmith This commit was generated by cvs2svn to compensate for changes in r38465,
which included commits to RCS files with non-trunk default branches.
38465 Fri Aug 21 03:17:42 MDT 1998 msmith This is the new unified bootstrap, sometimes known previously as the
'three-stage' bootstrap.
There are a number of caveats with the code in its current state:
- The i386 bootstrap only supports booting from a floppy.
- The kernel and kld do not yet know how to deal with the extended
information and module summary passed in.
- PnP-based autodetection and demand loading of modules is not implemented.
- i386 ELF kernel loading is not ready yet.
- The i386 bootstrap is loaded via an ugly blockmap.

On the alpha, both net- and disk-booting (SRM console machines only) is
supported. No blockmaps are used by this code.

Obtained from: Parts from the NetBSD/i386 standalone bootstrap.
/freebsd-11-stable/stand/libsa/
H A Dnullfs.cdiff 39469 Fri Sep 18 23:00:57 MDT 1998 msmith Nuke prototype for strerror, consumers get it from <string.h>
Fix overlooked nullopen() implementation.
diff 38452 Thu Aug 20 08:19:55 MDT 1998 msmith This commit was generated by cvs2svn to compensate for changes in r38451,
which included commits to RCS files with non-trunk default branches.
38451 Thu Aug 20 08:19:55 MDT 1998 msmith This is libstand; a support library for standalone executables (eg. bootstrap
modules).
Obtained from: NetBSD, with some architectural changes and many additions.
/freebsd-11-stable/usr.sbin/ppp/
H A Ddescriptor.hdiff 37141 Wed Jun 24 17:33:36 MDT 1998 brian o If we come out of select() with only write descriptors that
end up writing zero bytes, sleep for 1/10 of a second so that
we don't end up using up too much cpu.
This should only ever happen on systems that wrongly report a
descriptor as writable despite the tty buffer being full.
Discussed with: Jeff Evarts

o Do an initial run-time check to see if select() alters the passed
timeval. This knowledge isn't yet used, but will be soon.
diff 36314 Sat May 23 20:24:50 MDT 1998 brian o Move our prompt descriptor list outside of the bundle.
It's now dealt with by the `server' object. This simplifies
things as we only have one list of prompt descriptors and
the log_ routines check prompt::logactive to determine
whether it should be used for output.
o Include the MP socket UpdateSet() result in bundle::UpdateSet().
o Don't select on the tun device unless we're in NETWORK
phase or AUTO mode.
o Stop the idle timer when we go to DEAD phase. We may
have transferred a link and not had a chance to kill
it.
o Don't fail when trying to unlink our transferred datalink
from our descriptor lists just before the transfer.
o Add our link descriptor to the write set if we got a short
write the last time (physical::out is set).
o Log the connection source address when a connection is closed.
o Remove descriptor::next field. Descriptor lists are not required
any more.
36285 Thu May 21 19:49:08 MDT 1998 brian MFMP: Make ppp multilink capable.
See the file README.changes, and re-read the man page.
H A Dlink.hdiff 38544 Tue Aug 25 15:48:43 MDT 1998 brian If we've got a full output buffer queue and cannot send
anything for two mintues (see ``set choked'' and ``show
bundle''), nuke the ip, mp and link level buffer queues.

This should fix problems where ``ppp -auto'' seems to stop
responding after failing to connect to the peer a few times.
diff 36312 Sat May 23 15:05:28 MDT 1998 brian o Make sure we adjust our min seq and process any outstanding queued
incoming fragments when a link goes down.
o Don't use the minimum sequence numbers of links that aren't open.
o Understand sequence number wrapping when determining the minimum
sequence number.
o Add & adjust a few comments.
36285 Thu May 21 19:49:08 MDT 1998 brian MFMP: Make ppp multilink capable.
See the file README.changes, and re-read the man page.
H A Dthroughput.hdiff 36934 Fri Jun 12 18:12:26 MDT 1998 brian Add the ``clear'' function.
Mostly submitted by: "Stephane E. Potvin" <sepotvin@videotron.ca>
diff 36819 Tue Jun 09 16:49:10 MDT 1998 brian Show the time that we reached maximum throughput.
Submitted by: "Stephane E. Potvin" <sepotvin@videotron.ca>
diff 36285 Thu May 21 19:49:08 MDT 1998 brian MFMP: Make ppp multilink capable.
See the file README.changes, and re-read the man page.
H A Diplist.cdiff 37210 Sat Jun 27 21:48:54 MDT 1998 brian o Fix remaining sizeof problems for 64 bit machines.
o Allow ``set ....'' when we have multiple links but aren't in
multilink mode.
o Do a TLS when we receive a ``Open'' event in ``Closed'' state,
despite the rfc state transition table. This is clearly an
error in the RFC as TLS cannot have yet been called (without
TLF) in the ``Closed'' state.
I've posted a message to comp.protocols.ppp for confirmation.
diff 37010 Mon Jun 15 17:06:58 MDT 1998 brian o De-staticise things that don't need to be static.
o Bring the static ``ttystate'' into struct prompt so that
the tilde context is per prompt and not global.
o Comment the remaining static variables so that it's
clear why they're static.
o Add some XXX comments suggesting that our interface list
and our hostname should be re-generated after a signal
(say SIGUSR1) so that a machine with PCCARDs has a chance.
diff 36285 Thu May 21 19:49:08 MDT 1998 brian MFMP: Make ppp multilink capable.
See the file README.changes, and re-read the man page.
H A Dprompt.hdiff 37010 Mon Jun 15 17:06:58 MDT 1998 brian o De-staticise things that don't need to be static.
o Bring the static ``ttystate'' into struct prompt so that
the tilde context is per prompt and not global.
o Comment the remaining static variables so that it's
clear why they're static.
o Add some XXX comments suggesting that our interface list
and our hostname should be re-generated after a signal
(say SIGUSR1) so that a machine with PCCARDs has a chance.
diff 36314 Sat May 23 20:24:50 MDT 1998 brian o Move our prompt descriptor list outside of the bundle.
It's now dealt with by the `server' object. This simplifies
things as we only have one list of prompt descriptors and
the log_ routines check prompt::logactive to determine
whether it should be used for output.
o Include the MP socket UpdateSet() result in bundle::UpdateSet().
o Don't select on the tun device unless we're in NETWORK
phase or AUTO mode.
o Stop the idle timer when we go to DEAD phase. We may
have transferred a link and not had a chance to kill
it.
o Don't fail when trying to unlink our transferred datalink
from our descriptor lists just before the transfer.
o Add our link descriptor to the write set if we got a short
write the last time (physical::out is set).
o Log the connection source address when a connection is closed.
o Remove descriptor::next field. Descriptor lists are not required
any more.
36285 Thu May 21 19:49:08 MDT 1998 brian MFMP: Make ppp multilink capable.
See the file README.changes, and re-read the man page.
/freebsd-11-stable/usr.bin/locate/locate/
H A Dmklocatedb.shdiff 41393 Sat Nov 28 22:59:20 MST 1998 wosch Set TMPDIR to /tmp
Remove the temp directory in trap.
Replace the buggy awk script with a correct perl script.

Don't make a copy of the input data anymore if the input is already
sorted (option -presort). This scheme avoid large temporary files in
/tmp.
diff 34313 Sun Mar 08 14:09:31 MST 1998 wosch Change default temporary directory (TMPDIR) from /tmp to /var/tmp.

Mosts users seems to have a larger /var/tmp partition
than /tmp - IMHO silly but who cares?
diff 34312 Sun Mar 08 13:28:37 MST 1998 wosch Improve shell variable substitution.
/freebsd-11-stable/usr.sbin/btxld/
H A Dbtxld.cdiff 39125 Sun Sep 13 11:28:07 MDT 1998 rnordier Enable client entry point support.
diff 39093 Sat Sep 12 04:49:48 MDT 1998 rnordier This commit was generated by cvs2svn to compensate for changes in r39092,
which included commits to RCS files with non-trunk default branches.
39092 Sat Sep 12 04:49:48 MDT 1998 rnordier btxld is a link editor for BTX (boot extender) clients, supporting ELF,
a.out, and binary formats.
/freebsd-11-stable/share/man/man3/
H A Dpthread_mutex_trylock.3diff 38702 Mon Aug 31 14:41:09 MDT 1998 wosch Sort cross references.
diff 38028 Sun Aug 02 22:58:37 MDT 1998 alex The pthreads standard has been published. Change:
...is expected to conform to IEEE (``POSIX'') Std 1003.1c when it is
published.
to:
...conforms to ISO/IEC 9945-1 ANSI/IEEE (``POSIX'') Std 1003.1 Second
Edition 1996-07-12.

Discussed with: jb
37985 Fri Jul 31 07:09:19 MDT 1998 phk I've put together man pages for the pthread_cleanup, pthread_cond, and
pthread_mutex routines. I've also tweaked pthread_create.3 to point to
pthread_cleanup_push(3) and pthread_cleanup_pop(3).

PR: 7450
Submitted by: Brian Cully <shmit@kublai.com>
/freebsd-11-stable/sbin/newfs_msdos/
H A Dnewfs_msdos.8diff 40184 Sat Oct 10 13:47:16 MDT 1998 rnordier Kill an extraneous dot.
PR: 8103
Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org>
diff 39771 Tue Sep 29 15:34:25 MDT 1998 obrien Add history.
diff 38702 Mon Aug 31 14:41:09 MDT 1998 wosch Sort cross references.
diff 37665 Wed Jul 15 04:30:38 MDT 1998 charnier Correct use of .Nm. Remove unused #includes. Short usage() string, see man
page for details.
diff 37447 Mon Jul 06 18:01:34 MDT 1998 rnordier This commit was generated by cvs2svn to compensate for changes in r37446,
which included commits to RCS files with non-trunk default branches.
37446 Mon Jul 06 18:01:34 MDT 1998 rnordier Add newfs_msdos: extensive newfs-style support for creating FAT12,
FAT16, and FAT32 file systems in all their various horriblenesses.

Approved-in-concept by: joerg
/freebsd-11-stable/contrib/sendmail/src/
H A Derr.cdiff 40497 Sat Oct 17 14:04:28 MDT 1998 bde Fixed printf format errors.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
diff 38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
diff 40497 Sat Oct 17 14:04:28 MDT 1998 bde Fixed printf format errors.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
H A Dsavemail.cdiff 40497 Sat Oct 17 14:04:28 MDT 1998 bde Fixed printf format errors.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
diff 38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
diff 40497 Sat Oct 17 14:04:28 MDT 1998 bde Fixed printf format errors.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
/freebsd-11-stable/contrib/sendmail/makemap/
H A Dmakemap.cdiff 38076 Tue Aug 04 10:53:30 MDT 1998 peter Copy respective revisions from usr.sbin/sendmail/*/* - use -1 with getopt.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
diff 38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
diff 38076 Tue Aug 04 10:53:30 MDT 1998 peter Copy respective revisions from usr.sbin/sendmail/*/* - use -1 with getopt.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
/freebsd-11-stable/contrib/sendmail/smrsh/
H A Dsmrsh.cdiff 38081 Tue Aug 04 11:08:41 MDT 1998 peter Copy original rev 1.2 - path updates for 4.4BSD so smrsh is more useable.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
diff 38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
diff 38081 Tue Aug 04 11:08:41 MDT 1998 peter Copy original rev 1.2 - path updates for 4.4BSD so smrsh is more useable.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
/freebsd-11-stable/contrib/sendmail/cf/m4/
H A Dcfhead.m4diff 38073 Tue Aug 04 10:44:19 MDT 1998 peter Copy across rev 1.2 of usr.sbin/sendmail/cf/m4/cfhead.m4: Record envelope
sender in each Received: header along the way. Great for spammer hunting.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
diff 38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
diff 38073 Tue Aug 04 10:44:19 MDT 1998 peter Copy across rev 1.2 of usr.sbin/sendmail/cf/m4/cfhead.m4: Record envelope
sender in each Received: header along the way. Great for spammer hunting.
diff 38033 Mon Aug 03 03:56:20 MDT 1998 peter This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.
38032 Mon Aug 03 03:56:20 MDT 1998 peter Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions. I will copy across our changes
and then point the Makefiles across once the dust has settled..
/freebsd-11-stable/contrib/binutils/bfd/
H A Dihex.cdiff 38889 Sun Sep 06 20:57:45 MDT 1998 jdp Import GNU binutils-2.9.1. This will break things for a few minutes
until I've made the commits to resolve the conflicts.

Submitted by: Doug Rabson <dfr>
33965 Sun Mar 01 20:58:51 MST 1998 jdp Initial import of GNU binutils version 2.8.1. Believe it or not,
this is heavily stripped down.
/freebsd-11-stable/contrib/binutils/include/
H A Dobstack.hdiff 38889 Sun Sep 06 20:57:45 MDT 1998 jdp Import GNU binutils-2.9.1. This will break things for a few minutes
until I've made the commits to resolve the conflicts.

Submitted by: Doug Rabson <dfr>
33965 Sun Mar 01 20:58:51 MST 1998 jdp Initial import of GNU binutils version 2.8.1. Believe it or not,
this is heavily stripped down.
/freebsd-11-stable/contrib/tcpdump/
H A Dppp.hdiff 39298 Tue Sep 15 17:36:32 MDT 1998 fenner This commit was generated by cvs2svn to compensate for changes in r39297,
which included commits to RCS files with non-trunk default branches.
39297 Tue Sep 15 17:36:32 MDT 1998 fenner Virgin import of LBL tcpdump v3.4
/freebsd-11-stable/sys/i386/isa/
H A Dccbque.hdiff 42118 Mon Dec 28 10:46:55 MST 1998 kato CAM support.

Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp> and
Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
diff 33841 Thu Feb 26 01:20:41 MST 1998 kato Fixed syntax error by recent changes to the queue macros.
/freebsd-11-stable/sys/modules/syscons/beastie/
H A DMakefilediff 42143 Tue Dec 29 07:02:44 MST 1998 peter Add -I${.CURDIR} since it #includes logo.c from the source dir and breaks
when building with an obj dir.

Reported by: Quite a few people.. :-/
42120 Mon Dec 28 12:22:57 MST 1998 des One more for the road: Chuck the friendly floating daemon. Requires
VESA_800x600 to run.
/freebsd-11-stable/sys/modules/syscons/warp/
H A DMakefilediff 42203 Thu Dec 31 11:38:59 MST 1998 des Compile without warnings.
42108 Sun Dec 27 20:03:09 MST 1998 des Finally give FreeBSD a graphical screensaver. It isn't much, but it works,
and can serve as a template for further efforts. Consider this my (belated)
Christmas present to the Project :)

Requested by: jkh
/freebsd-11-stable/stand/ofw/libofw/
H A Dofw_module.cdiff 38712 Mon Aug 31 21:10:43 MDT 1998 msmith Bootloader update.

- Implement a new copyin/readin interface for loading modules.
This allows the module loaders to become MI, reducing code duplication.
- Simplify the search for an image activator for the loaded kernel.
- Use the common module management code for all module metadata.
- Add an 'unload' command that throws everything away.
- Move the a.out module loader to MI code, add support for a.out
kld modules.

Submitted by: Alpha changes fixed by Doug Rabson <dfr@freebsd.org>
38465 Fri Aug 21 03:17:42 MDT 1998 msmith This is the new unified bootstrap, sometimes known previously as the
'three-stage' bootstrap.
There are a number of caveats with the code in its current state:
- The i386 bootstrap only supports booting from a floppy.
- The kernel and kld do not yet know how to deal with the extended
information and module summary passed in.
- PnP-based autodetection and demand loading of modules is not implemented.
- i386 ELF kernel loading is not ready yet.
- The i386 bootstrap is loaded via an ugly blockmap.

On the alpha, both net- and disk-booting (SRM console machines only) is
supported. No blockmaps are used by this code.

Obtained from: Parts from the NetBSD/i386 standalone bootstrap.
/freebsd-11-stable/sys/dev/aha/
H A Daha.cdiff 42022 Tue Dec 22 20:31:06 MST 1998 imp Invalid is spelled with the v *BEFORE* the a.
diff 42013 Tue Dec 22 16:14:50 MST 1998 gibbs Don't calculate the residual twice.
diff 41807 Tue Dec 15 00:51:54 MST 1998 imp o Convert length of hccb to integer from the array. Eivind Eklund
pointed this out, but I've not seen a manifestation of this.
o Check against 0x00 as well as 0xff for geometry register, as some clone
cards don't return 0xff. Vadim Mikhailov pointed this out in PR
8743 for his Dell SCSI Array controller working in AHA-1540
emulation mode. Note that this test is likely to go away in the
future in favor of a better one Justin has recommended.
diff 41709 Sat Dec 12 22:05:04 MST 1998 gibbs Pull in fixes similar to those recently committed to the bt driver:

- For transactions of 0 length, us a non-residual checking CCB type.

- Preserve command status if our interrupt handler completes a command
while we are polling for completion in aha_cmd.
diff 41514 Fri Dec 04 20:54:57 MST 1998 archie Examine all occurrences of sprintf(), strcat(), and str[n]cpy()
for possible buffer overflow problems. Replaced most sprintf()'s
with snprintf(); for others cases, added terminating NUL bytes where
appropriate, replaced constants like "16" with sizeof(), etc.

These changes include several bug fixes, but most changes are for
maintainability's sake. Any instance where it wasn't "immediately
obvious" that a buffer overflow could not occur was made safer.

Reviewed by: Bruce Evans <bde@zeta.org.au>
Reviewed by: Matthew Dillon <dillon@apollo.backplane.com>
Reviewed by: Mike Spengler <mks@networkcs.com>
diff 41335 Wed Nov 25 17:12:56 MST 1998 imp o Patch, slightly altered, from Graham Menhennitt for older aha 1542B
cards. My machine didn't tickle this problem, so I can't tell if
it fixed anything or not. However, it didn't break my already working
1542-{B,C,CF,CP} probes.
o Minor comment correction
o Minor correction in printf
diff 41050 Tue Nov 10 04:47:11 MST 1998 gibbs Noop Commit - Change was in last revision.

If the next available mailbox is not in the free state, print a warning
and handle the condition as a temporary resource shortage. The condition
should never happen, but we shouldn't panic since recovery is possible.
diff 41047 Tue Nov 10 04:44:42 MST 1998 gibbs Fix probes when a port address is specified.

Convert from BT'isms to AHA'isms

Don't fail the probe if the illegal command bit is set in the status
register. If the BusLogic MultiMaster probe preceeded us, it may well
have determined that the card we are attaching to was not a true MultiMaster
by sending us a command that fails on the 154X.

Reset the adapter before doing the inquiry. This provides extra sanity
and will also clear the illegal command status bit that my be left over
from the MultiMaster probe.
diff 40419 Thu Oct 15 21:46:33 MDT 1998 gibbs -Wunused cleanup.

Submitted by: Poul-Henning Kamp <phk@freebsd.org>
diff 40403 Thu Oct 15 17:53:30 MDT 1998 imp Reduce the number of ccbs to 16, per the aha documentation. Move
bogus comment to proper place.

This should fix the hangs people are seeing under very heavy load, at
least it does for me. Please let me know if you continue to have
problems.
/freebsd-11-stable/stand/common/
H A Ddev_net.hdiff 38466 Fri Aug 21 03:17:42 MDT 1998 msmith This commit was generated by cvs2svn to compensate for changes in r38465,
which included commits to RCS files with non-trunk default branches.
38465 Fri Aug 21 03:17:42 MDT 1998 msmith This is the new unified bootstrap, sometimes known previously as the
'three-stage' bootstrap.
There are a number of caveats with the code in its current state:
- The i386 bootstrap only supports booting from a floppy.
- The kernel and kld do not yet know how to deal with the extended
information and module summary passed in.
- PnP-based autodetection and demand loading of modules is not implemented.
- i386 ELF kernel loading is not ready yet.
- The i386 bootstrap is loaded via an ugly blockmap.

On the alpha, both net- and disk-booting (SRM console machines only) is
supported. No blockmaps are used by this code.

Obtained from: Parts from the NetBSD/i386 standalone bootstrap.

Completed in 463 milliseconds

1234567891011>>