| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
| |
in addition to setting osf1_enable to YES.
- Only define configLinux() #ifdef WITH_LINUX.
Approved by: re
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
and more maintainable.
- WITH_SYSCONS: defined on all arch's that support syscons (currently i386,
alpha, and ia64)
- WITH_MICE: defined on all arch's that support moused(8) (currently i386,
alpha, and ia64)
- WITH_SLICES: defined on all arch's that use disk slices (currently i386
and ia64)
- WITH_LINUX: defined on all arch's that support Linux binary compat
(currently i386 and alpha)
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
| |
- Only include compat4x distribution if this is either i386 or alpha.
|
|
|
|
|
|
|
| |
for the X distributions if X_AS_PKG is defined.
Tested on: i386
Approved by: re
|
|
|
|
|
|
|
| |
sysinstall to create /cdrom entries in /etc/fstab that just use the
raw CD-ROM device /dev/cd0, etc.
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
|
|
|
| |
Added the -h option to the synopsis, documented the -a option,
sorted options descriptions according to style(9).
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
|
|
|
|
|
|
| |
Removed whitespace at EOL.
Removed hard sentence breaks.
Removed empty lines.
Spell FreeBSD correctly.
Sort xrefs.
Approved by: re
|
|
|
|
|
|
|
| |
Change the manpage to reflect that it's now called configXSetup.
Also document configXDesktop.
Submitted by: pirat <pirat@access.inet.co.th>
|
|
|
|
|
|
|
|
|
|
| |
the two GNOME 1-based alternatives.
While here, note that a majority of the items in this menu are not
sentences, and remove trailing dots to make the remainder consistent.
Reviewed by: marcus
Approved by: re (bmah)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Has been seen to work on several cards and communicating with
several mobile phones to use them as modems etc.
We are still talking with 3com to try get them to allow us to include
the firmware for their pccard in the driver but the driver is here..
In the mean time
it can be downloaded from the 3com website and loaded using the utility
bt3cfw(8) (supplied) (instructions in the man page)
Not yet linked to the build
Submitted by: Maksim Yevmenkin <myevmenk@exodus.net>
Approved by: re
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[Those marked with an asterisk (*) are virtual categories]
- accessibility* : Ports to help disabled users
PR: ports/39103
Requested by: trevor
- finance : Monetary, financial and related applications
PR: ports/39102
Requested by: trevor
- haskell* : Software related to the Haskell language
PR: ports/41959
Requested by: obraun
- hungarian : Hungarian language support
PR: ports/37576
Requested by: Janos Mohacsi <janos.mohacsi@bsd.hu>
- multimedia : Multimedia software
Requested by: many
- parallel* : pplications dealing with parallelism in computing
PR: ports/39094
Requested by: trevor
- portuguese : Portuguese language support
PR: ports/35991
Requested by: trevor
|
|
|
|
|
|
|
|
| |
of the EFI file system. This makes the EFI partition non-optional.
I don't think that the links are actually correct, given that all
the mount points are under /mnt when sysinstall is run as init.
(ie a non-upgrade). Thus: I think I need to go in once more, but
at least this doesn't get lost...
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
NTP on FreeBSD:
The first one allows one to avoid installing the html files.
The second one allows one to override the CLOCKDEFS on the
make command line.
Submitted by: phk
|
|
|
|
|
|
|
|
|
|
|
|
| |
time_t. Deal with the possibility that time_t != int32_t. This boils
down to this sort of thing:
- time(&ut.ut_time);
+ ut.ut_time = time(NULL);
and similar for ctime(3) etc. I've kept it minimal for the stuff
that may need to be portable (or 3rd party code), but used Matt's time32
stuff for cases where that isn't as much of a concern.
Approved by: re (jhb)
|
| |
|
|
|
|
|
|
| |
(sysinstall depends on this feature for package addition.)
Comment on hard-coded bzip2 usage in the spirit of rev. 1.58.
|
|
|
|
|
|
|
|
|
|
| |
the specified filename of the log to be rotated is in fact shell glob
pattern. In this case, all files matching this pattern will be rotated
using the same options. Useful in the case when there is no pre-defined
name for the logfiles (e.g. xtradius, samba etc).
Sponsored by: PortaOne Software Ltd
MFC after: 2 weeks
|
|
|
|
|
|
|
|
|
|
|
| |
partitions marked as being of type efi. This change adds code to
1. actually run the newfs command at mount time (install.c),
2. display the newfs state on screen (label.c)
3. allow toggling of the newfs state (label.c)
Even though newfs(8)-ing FAT partitions can be of use on i386
machines in general, it has been opted to minimize impact for
now.
|
| |
|
| |
|
|
|
|
|
|
|
| |
With this change there's no a priori difference between EFI and
FAT partitions. With this change and the corresponding change to
libdisk, we can create EFI partitions, just like regular FAT
partitions.
|
|
|
|
|
|
|
| |
leaking flags from earlier chunks into later ones.
PR: bin/40655
Submitted by: Thomas Zenker <thz@Lennartz-electronic.de>
|
|
|
|
|
| |
beginning, so the best this could achieve would be to mask an earlier
failure. Break instead of continue for another failure case.
|
|
|
|
|
|
|
|
|
| |
the loop that runs through the environment variables to be a bit more
intuitive. Also, change some 'continue's in failure cases to 'break's
instead. If we are going to fail, we should just do it.
PR: bin/40654
Submitted by: Thomas Zenker <thz@Lennartz-electronic.de> (partially)
|
|
|
|
|
|
|
| |
argument as of revision 1.52 (July 12, 1996, about a month after I
graduated from high school) when 'newfs -u' support was axed, so remove it.
This also allows us to remove a hack in the create partition case where we
created the partition twice since we didn't have the size the first time.
|
|
|
|
| |
partitions, not to !newfs.
|
|
|
|
|
|
|
| |
newfs flag for this partition.
PR: bin/31837
Reported by: Oliver Breuninger <ob@www.partner.de>
|
|
|
|
| |
Reviewed by: dd
|
|
|
|
| |
but not made conditional upon it.
|
|
|
|
|
|
|
| |
is instead of the usual 022 umask, and explain that what the scheme
still prevents is unwanted changes, not prying eyes.
While I'm here, mess with the phrasing and line-breaks a bit.
|
|
|
|
|
|
|
| |
as a consequence of a host or program name specification into a common
function, skip_pmessage.
Reviewed by: roberto
|
|
|
|
| |
find any consumers of HOSTNAME_MAX.
|
|
|
|
| |
pkg_{create,delete} don't need to needlessly link with libfetch.
|
|
|
|
|
| |
because errors from mount(2) were explicitly ignored. I didn't fix that
bug.
|
|
|
|
|
|
| |
the module compiled in or loaded instead of bogusly checking for ppp0.
Also if and only if the caller is actually root and the kernel does not
have ppp support, try to load the ppp module before giving up.
|
| |
|
|
|
|
|
|
|
|
| |
fixes. See contrib/ntp/ChangeLog for details.
MFC after: 1 month
Prodded by: jhay
Tested on: sparc64 (panther), alpha (beast) and i386.
|
|
|
|
|
|
|
| |
that they aren't copied over into /stand of new installations.
Submitted by: matusita
Tested on: i386
|
|
|
|
|
| |
Reviewed by: -doc, -hubs
Approved by: silence on -doc, -hubs
|
|
|
|
|
|
|
| |
- Disabled 'Syscons, Font', 'Syscons, Screenmap' and 'Syscons, Ttys' menus
on pc98.
- Fixed the MenuMouseType and MenuMousePort menus for pc98.
- Fixed some comments for pc98.
|
|
|
|
| |
to match that.
|
| |
|
| |
|