Re: Screen Resolution

2005-05-31 Thread Makoto Matsushita

So have I (in fact that's how I started using FreeBSD 5.0).  However the drivers
required for their emulated graphics card are only supplied for FreeBSD 4.x with
VMWare 4.5.


You can use graphic driver modules (${X11}/lib/modules/drivers/vmware_drv.o) 
that is bundled with recent Xorg/XFree86, and it is (ideally) the same one 
VMware supplies by VMware tools for FreeBSD.


No worries, it just works.  Don't forget to set
Driver vmware
to Section Device in xorg.conf/XF86Config.  You may also set
BusID PCI:0:15:0
to Device section, but if my memory serves right, it is automatically set by 
driver itself.


--
Makoto `MAR' Matsushita
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make installworld DESTDIR=foo troubles

2003-12-11 Thread Makoto Matsushita

molter what am I missing?

It seems that you forget to set PATH environment variable.  As you
know, env -i does not pass any environment variable to child process
if any other variables are explicitly set.

-- -
Makoto `MAR' Matsushita
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: rc.sendmail

2003-06-21 Thread Makoto Matsushita

john Could someone please explain rc.sendmail to me?

Is rc.sendmail(8) not enough for you?

-- -
Makoto `MAR' Matsushita
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: anoncvs.freebsd.org reachability

2003-02-10 Thread Makoto Matsushita

larse Is there a mirror somewhere?

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html

The FreeBSD Handbook is your friend :-) There are 4 servers listed.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: doFS.sh, FreeBSD To Go

2002-08-08 Thread Makoto Matsushita


tlambert2 FWIW, I think a floppy image is great.  I have a number of
tlambert2 older systems from which I cannot boot from the CDROM.

That's true, but this project (FreeBSD To Go) employs CD-ROM as their
root filesystem.  It is natual to boot from CD-ROM :-)

tlambert2 It's also desirable from the third party driver
tlambert2 perspective, as long as FreeBSD can load kernel modules of
tlambert2 a CDROM or DOS floppy in a binary format

Loader(8) would help you.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: 'make release' tries to build a port?

2002-07-09 Thread Makoto Matsushita


reichert Unfortunately, I had to delve into other bits of mystery and wonder:
reichert - The Makefile in usr/src/release; that's where KERNEL_FLAGS and
reichert   WORLD_FLAGS are mentioned.

Ya, it should be documented in release(7) IMO...

reichert Now, if only I could automate a relationship between
reichert RELEASETAG and BUILDNAME...

You can set both RELEASETAG and BUILDNAME in your own shell script
which kicks make release.  That's just a shell-script programming problem:)

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: 'make release' tries to build a port?

2002-07-06 Thread Makoto Matsushita


reichert It was rather disappointing that I couldn't run 'make release' in
reichert parallel via the '-j' option, though.  :/

WORLD_FLAGS and/or KERNEL_FLAGS don't work for you?

reichert How disparate can the host OS version be from the version
reichert I'm trying to make a release of?

Same branch should work.  Different branch may or may not work.  It is
known that recent 5-current can be built on a recent 4-stable environment.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: 'make release' tries to build a port?

2002-07-06 Thread Makoto Matsushita


 WORLD_FLAGS and/or KERNEL_FLAGS don't work for you?

reichert 'make -j 10 release' didn't work.

Again, WORLD_FLAGS and/or KERNEL_FLAGS don't work for you?

Yes, it would be better that whole release procedure works with make
-jN, but most of the time spent is make buildworld/buildkernel during
make release, so setting WORLD_FLAGS/KERNEL_FLAGS may be enough to do.

reichert   ===  Patching for ghostscript-gnu-nox11-7.05_1
reichert   ===  Applying FreeBSD patches for ghostscript-gnu-nox11-7.05_1
reichert   /usr/local/bin/sed_inplace: not found

IMHO it is a ports issue.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: 'make release' tries to build a port?

2002-07-02 Thread Makoto Matsushita


src/release/Makefile assumes that src/release directory is actually
/usr/src/release.  It seems that your source code location is /home/src.

reichert   /usr/bin/time make release \
reichert CHROOTDIR=/home/release \
reichert BUILDNAME=4.5-RELEASE  \
reichert CVSROOT=/home/ncvs \
reichert RELEASETAG=RELENG_4_5_0_RELEASE

DOCDISTFILES=/your/ports/distfile/directory will help you.  Note that
this variable name is changed to 'RELEASEDISTFILES' in recent 4-stable.

If you want to learn more about make release, read release(7) manual
available in recent 4-stable.  Also src/release/Makefile will help you:)

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: cvs(1) bug? with cvs update -rX -DY

2002-06-29 Thread Makoto Matsushita


keramida So, the proper steps to get the files of a branch other than HEAD, in
keramida the revisions they had at a certain point in time would be:

keramida   + Checkout using the branch as a sticky tag.
keramida   + Update using both -D DATE and -r BRANCH_TAG.

No, it doesn't work as you said.  The second cvs update will delete
all lukemftpd files (see my previous email posted to hackers@).

Would you please try same operations to src/contrib/lukemftpd?

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: cvs(1) bug? with cvs update -rX -DY

2002-06-25 Thread Makoto Matsushita


scott You could simply pop up a couple directories and checkout the
scott given tag and date over your existing checkout.  CVS is smart
scott enough to notice that you've already got something checked out,
scott and it will just update things.

matusita It would be fine to me.  Thank you.

Hmm, my cvs(1) doesn't allow me to checkout.

% rm -rf src
% cvs -R -d /home/ncvs checkout -rRELENG_4 -DWed Jun 26 00:00:00 JST 2002 
src/contrib/lukemftpd
cvs checkout: Updating src/contrib/lukemftpd
cvs checkout: Updating src/contrib/lukemftpd/src
% ls -R src/contrib/lukemftpd
CVS

src/contrib/lukemftpd/CVS:
Entries Repository  RootTag
% 

Am I still wrong?  I want to checkout specific time of RELENG_4 branch
of source code.  Checkout other source code seems fine (see below),
but I cannot checkout lukemftpd...

% cvs -R -d /home/ncvs checkout -rRELENG_4 -DWed Jun 26 00:00:00 JST 2002 
src/contrib/one-true-awk
cvs checkout: Updating src/contrib/one-true-awk
U src/contrib/one-true-awk/FIXES
U src/contrib/one-true-awk/FREEBSD-upgrade
U src/contrib/one-true-awk/README
U src/contrib/one-true-awk/awk.1
U src/contrib/one-true-awk/awk.h
U src/contrib/one-true-awk/awkgram.y
U src/contrib/one-true-awk/b.c
U src/contrib/one-true-awk/lex.c
U src/contrib/one-true-awk/lib.c
U src/contrib/one-true-awk/mac.code
U src/contrib/one-true-awk/main.c
U src/contrib/one-true-awk/makefile
U src/contrib/one-true-awk/maketab.c
U src/contrib/one-true-awk/parse.c
U src/contrib/one-true-awk/proctab.c
U src/contrib/one-true-awk/proto.h
U src/contrib/one-true-awk/run.c
U src/contrib/one-true-awk/tran.c
% grep FreeBSD: src/contrib/one-true-awk/*
src/contrib/one-true-awk/FREEBSD-upgrade:# $FreeBSD: 
src/contrib/one-true-awk/FREEBSD-upgrade,v 1.3.2.1 2002/06/21 20:09:40 obrien Exp $
% 

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: [CFR] max-child-per-ip restriction for inetd

2002-06-16 Thread Makoto Matsushita


ume I wish to add max-child-per-ip option to inetd.  This enables us to
ume restrict maximum number of simultaneous invocations of each service
ume from a single IP address.

FYI: This patch is already tested at snapshots.jp.FreeBSD.org, and it
seems fine to me.  Thank you, ume-san!

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: BootFORTH language reference

2002-03-11 Thread Makoto Matsushita


vladimirt  where can I find a manual/reference for/to a BootFORTH
vladimirt  language?

BootFORTH is a derived work of ficl 2.05.  You may want to check Ficl
documentation at URL:http://ficl.sourceforge.net/ficl.html.

And src/sys/boot is a good reference for you :-)

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: cannot get more than 32 PTYs in 4.4-RELEASE

2002-03-05 Thread Makoto Matsushita


dp *confused*

Read URL:http://www.daemonnews.org/199902/answerman.html#ptys, I'm
always running out of xterms because I have too many pseduo-ttys
open. How can I increase my number of ptys? article at DaemonNews.
You may find an example to create more ptys with MAKEDEV.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Make RELEASE broken?

2001-12-03 Thread Makoto Matsushita


kerberus There is not a
kerberus /usr/release/usr/src/contrib/nvi/docs/USD.doc/vi.ref/ref.so?
kerberus in the directory.

That file should be there.  It's your local problem if it is not
extracted from your CVS repository copy.

kerberus i modified the usr/src/release/Makefile to use the
kerberus 4.4-stable tag.

You don't have to modify Makefile.  See the comment of src/release/Makefile.

***

You may also want to read http://www.freebsd.org/internal/releng.html,
the document of FreeBSD release engineering process written by murray.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Make RELEASE broken?

2001-12-02 Thread Makoto Matsushita


Repeat again.

kerberus it builds a tree, cvs's the src goes into its build stage, and again,
kerberus fails with a fresh cvsup from today, which did a complete make world
kerberus kernel from the standard /usr/src, now can some one tell me what im
kerberus missing or doing wrong ?? and yes i read the slideshow everyone
kerberus recommended.

Would you please check that your buildbox has a file
/usr/release/usr/src/contrib/nvi/docs/USD.doc/vi.ref/ref.so?

And, you apprantly don't specify RELEASETAG variable that means you
are trying to build 5-current.  Is it OK for you?

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Make RELEASE broken?

2001-12-01 Thread Makoto Matsushita


You may want to mention that which branch (5-current, 4-stable, etc)
you wanna try.  Also you may want to clear that when you sup your code.

kerberus === share/doc/usd/13.viref
kerberus make: don't know how to make ref.so. Stop
kerberus *** Error code 2

src/contrib/nvi/docs/USD.doc/vi.ref/ref.so should be there.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: FreeBSD on vmware

2001-11-29 Thread Makoto Matsushita


iedowse ... but only if you spend most of your time running CPU benchmarks :-)

That's right :-)

iedowse On slower CPUs (I was using a 400MHz PII), the interrupts can
iedowse soak up virtually all of the available processing capacity
iedowse without the patch. I suspect this effect is responsible for
iedowse the most dramatic speedups.

I don't know that we can add a new option, maybe named 'VMWARE_GUEST',
for specific hardware.  But if someone (I don't know who) allows us to
do, we all VMware users will be happy with it.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: FreeBSD on vmware

2001-11-29 Thread Makoto Matsushita


glenngombert I could not even get 'Current' to boot at all under
glenngombert VMware 3.0 without applying the patch that was mentioned
glenngombert a couple weeks ago under Win2K...

What goes wrong to you?  Unable to boot with boot floppies?

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: FreeBSD on vmware

2001-11-28 Thread Makoto Matsushita


iedowse Someone mentioned on a list somewhere that vmware takes forever to
iedowse emulate the cmpxchg instruction, and that using the I386_CPU version
iedowse of atomic_cmpset_int() helps a lot.

I really know I'm doing a stupid thing, but here is benchmark results
of both plain and patched 5-current (as of Nov/26/2001).  Patched
FreeBSD is about 10% faster than before.

*** Before:

TESTBASELINE RESULT  INDEX

Arithmetic Test (type = double)   2541.7   156596.8   61.6
Dhrystone 2 without register variables   22366.3  1214131.7   54.3
Execl Throughput Test   16.5   25.11.5
File Copy  (30 seconds)179.0 1684.09.4
Pipe-based Context Switching Test 1318.5  710.90.5
Shell scripts (8 concurrent) 4.07.01.8
 =
 SUM of  6 items 129.1
 AVERAGE  21.5


*** After:

TESTBASELINE RESULT  INDEX

Arithmetic Test (type = double)   2541.7   167038.3   65.7
Dhrystone 2 without register variables   22366.3  1267100.0   56.7
Execl Throughput Test   16.5   45.02.7
File Copy  (30 seconds)179.0 2863.0   16.0
Pipe-based Context Switching Test 1318.5 1372.61.0
Shell scripts (8 concurrent) 4.0   12.53.1
 =
 SUM of  6 items 145.3
 AVERAGE  24.2


***

Note that both are tested with:
- Same kernel configuration (but not GENERIC kernel)
- VMware Workstation 3.0.0 build 1455, WindowsXP Pro host
- 96MB RAM for FreeBSD guest OS
- 1.9GB Virtual Disk is on ATA66 HDD of host PC.
- Host PC has one Pentium3 850Mhz CPU

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: kernel config for kern.flp disk

2001-11-21 Thread Makoto Matsushita


anderson Where can I find the kernel config for the kern.flp disk? 
anderson Also, is there a decent how-to or faq about the boot.flp
anderson disk, and how to rebuild your own (using basically theirs,
anderson just with an install.cfg thrown in and no userconfig options
anderson in the kernel)?

I don't know there is a FAQ about creating custom boot floppies, but
if you want to learn right now, read src/release/Makefile carefully.
All you want to know are there.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



RE: FreeBSD on vmware

2001-11-12 Thread Makoto Matsushita


raff Yes, I am running FreeBSD 4.3 in a win2k vmware will everything
raff working including the network (to outside world). No special
raff configurations were required other than the obvious.

FreeBSD 5-current guest also works fine here (W2k host).  I'm happy
with ports/emulators/vmware-tools :-)

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: IPv6 DAD avoidance

2001-08-20 Thread Makoto MATSUSHITA


brian Would it be worth bringing up the subject of adding an IFF_ flag that 
brian can be SIOCSIFFLAGS'd into the interface with the kame team ?

I cannot tell it's good and/or standard-compliant things or not... but,

brian If you think it's worth bringing up with the kame guys, can you tell 
brian me where I should send the mail (which list address) ?  Thanks.

How about [EMAIL PROTECTED]?  This list is for KAME snapshot users,
however it is also for technical discussions about KAME specification
and implementations.  See http://www.kame.net/snap-users/ for more detail.

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: IPv6 DAD avoidance

2001-08-19 Thread Makoto MATSUSHITA


brian Can anybody tell me if it's possbile to tell a given interface
brian not to do DAD ?

There is a kernel MIB, 'net.inet6.ip6.dad_count'.  See inet6(4)
manpage for more detail.

However, there is no way to stop DAD for any given interfaces; only
we have two choices, 'do DAD to any interfaces' or 'do not DAD to all
interfaces'.

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: custom bootable CD /usr/src/sys/i386/boot/cdboot

2001-06-26 Thread Makoto MATSUSHITA


I also want to know how to use cdboot, however:

lansil 1 -- The boot image contains a gzipped kernel, MFS, loader, and other
lansil relevant /boot stuff.  The Kernel and MFS in the boot image are used to
lansil mount the CD filesystem, and possibly chroot to the CD filesystem.  The
lansil FreeBSD install CD uses this method.

The boot image shouldn't require MFS, as installation floppy does. The
minimal requirement for boot image is: /boot/loader and its
configulation file, kernel itself (gzipped kernel will be required,
since kernel tends to be large), and that's all.

You can mount CD filesystem as 'root filesystem' after booting a kernel.
check -C option of boot(8) (loader(8) has same functionality, boot_cdrom
but it's not described in its manpage). Be aware that this method
doesn't work with recent 5-current although 4-stable works fine.

***

Demonstrative bootable CD-ROM image you may want to make is available
our SNAPSHOTs project:

ftp://current.jp.FreeBSD.org/pub/FreeBSD/snapshots/i386/ISO-IMAGES/live-releng4.iso

This is bootable 'live filesystem' of recent 4-stable (simply goes to
the single-user mode).

... and you can easily checks '5-current kernel doesn't work with
CD9660 filesystem as root' with live-current.iso.  I've already
reported to [EMAIL PROTECTED] but no helps.

-- -
Makoto MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Question about building source

2001-05-09 Thread Makoto MATSUSHITA


tlambert2 It still breaks.  See bsd.orig.mk; you _can't_ use a
tlambert2 compiler other than one installed in the default location,
tlambert2 or it will override the compiler defaults which tell it
tlambert2 where the correct header and crt0 files live.  Really.

???

If you run 'chroot /vol1/FreeBSD /bin/sh', you'll get an environment
that /vol1/FreeBSD is /; Compiler is in /usr/bin/cc.  Headers are in
/usr/include. Crt* files are in /usr/lib.  All files are located as it
should be.

If it doesn't work as you have said, make release' also _doesn't_
work; we cannot make a distribution. Obviously, it's wrong:)

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Question about building source

2001-05-08 Thread Makoto MATSUSHITA


dave $ cd /usr/src
dave $ make installworld DESTDIR=/vol1/FreeBSD
dave will install the entire OS into /vol1/FreeBSD?

Yes (or it should be).

dave Has anyone ever tried this? ;)

You should have already seen the result that uses make installworld
DESTDIR=/what/ever -- FreeBSD distribution itself :-)

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Question about building source

2001-05-08 Thread Makoto MATSUSHITA


tlambert2 FWIW: This breaks if you have updated your C++ compiler,
tlambert2 since the .mk files incorrectly override the paths for
tlambert2 thing like the RTTI header files and the CRT0 stuff...

We have chroot(8) already, no problems:) Perhaps the original poster
assume that /vol1/FreeBSD is for a jail(8) environment.

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Set up loader to boot cd

2001-05-01 Thread Makoto MATSUSHITA


maillist So, do I need to vnconfig the boot.flp and put my own custom
maillist loader in it or what?  I don't want to be puting -C in every
maillist time I boot.  Also, when I put in -C, the kernel will load,
maillist but then can't find the CD device

Which FreeBSD version you are using, 5-current or [43]-stable ?

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Set up loader to boot cd

2001-05-01 Thread Makoto MATSUSHITA


maillist 4.2-20010119-STABLE

My sample ISO image (using latest 4-stable) works very fine, booting
from CD and mount CD as root partition. It works pretty well.

If you have enough bandwidth to fetch 160MB ISO image file, try:
URL:ftp://current.jp.FreeBSD.org/pub/FreeBSD/snapshots/i386/ISO-IMAGES/live-releng4.iso

Also, I've tried to do with 5-current, kernel *can't* mount CD as a
root partition. If you wanna try how it goes to fail, try:
URL:ftp://current.jp.FreeBSD.org/pub/FreeBSD/snapshots/i386/ISO-IMAGES/live-current.iso

I've sent a email before to [EMAIL PROTECTED], does anybody know why
5-current kernel can't mount my CD-ROM as a root partition?

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Re: Set up loader to boot cd

2001-05-01 Thread Makoto MATSUSHITA


maillist What about creating a mfsroot.gz as part of that boot floppy
maillist image, and mounting that as root, then mounting the cd as
maillist /usr on top of that?

Simply 'mount -t cd9660 /dev/cd0a /usr' (or whatever CD device) after
booting a kernel is not enough for you? I've not tried yet, but there
is no reason to fail (if it fails, it means that you cannot install
FreeBSD from your CD drive.)

maillist I don't quite understand how loader works, though

Obviously, mounting a filesystem is not a loader(8)'s job :-)

-- -
Makoto `MAR' MATSUSHITA

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-hackers in the body of the message



Announce: daily 'LINT' checking by current.jp.FreeBSD.org

2000-10-11 Thread Makoto MATSUSHITA


For FreeBSD kernel hackers...

current.jp.FreeBSD.org, yet another SNAPSHOTs server in Japan, begins
to provide a compilation logfile of 'LINT' kernel. Kernel compilation
runs everyday for both 4-stable (0600JST) and 5-current (1400JST) branches.

If you have intersted, check: URL:http://current.jp.FreeBSD.org/build/LINT/

***

current.jp.FreeBSD.org devotes to provide information of building
procedures of FreeBSD, including daily SNAPSHOTs distributions (like
current.FreeBSD.org, but provides 3-stable, 4-stable and 5-current),
SNAPSHOTs CD-ROM images, make-installworld-able object bzip2ball,
whole logfile of SNAPSHOTs build procedures, HTMLed source code, and
more.

Visit URL:http://current.jp.FreeBSD.org/, and of course,
URL:ftp://current.jp.FreeBSD.org/pub/FreeBSD/snapshots/i386/. Some
information are also available via finger (just like kernel.org of
Linux), and all ftp contents are also availble via anonymous
rsync. The host also connected to 6bone, all network services are
available for *both* IPv4 and IPv6.

If you want have some comments about this service/host, please send
to [EMAIL PROTECTED]

-- -
Makoto `MAR' MATSUSHITA


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Announce: daily 'LINT' checking by current.jp.FreeBSD.org

2000-10-11 Thread Makoto MATSUSHITA


Gimme one more time to announce...

matusita current.jp.FreeBSD.org, yet another SNAPSHOTs server in
matusita Japan, begins to provide a compilation logfile of 'LINT'
matusita kernel. Kernel compilation runs everyday for both 4-stable
matusita (0600JST) and 5-current (1400JST) branches.

And, all compiler warnings of 'making a release' are available at:

URL:http://current.jp.FreeBSD.org/build/release/

If you have interested in *all logs* of making a release, please visit:

URL:ftp://current.jp.FreeBSD.org/pub/FreeBSD/snapshots/i386/log/

Hope these helps FreeBSD hackers to improve the code.

-- -
Makoto `MAR' MATSUSHITA


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message