| #
e9ac4169
|
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
| #
031beb4e
|
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
| #
e9ac4169
|
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
| #
031beb4e
|
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
| #
193d9e76
|
| 04-Mar-2017 |
Enji Cooper <ngie@FreeBSD.org> |
sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic
Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
|
| #
193d9e76
|
| 04-Mar-2017 |
Enji Cooper <ngie@FreeBSD.org> |
sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic
Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
|
| #
ab3626d5
|
| 06-Nov-2002 |
Yoshihiro Takahashi <nyan@FreeBSD.org> |
Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.
|
| #
17d6c636
|
| 11-Jan-2002 |
Ruslan Ermilov <ru@FreeBSD.org> |
Drop <bsd.man.mk> support from <bsd.kmod.mk>.
Not objected to by: -current
|
| #
3de6da9c
|
| 09-Aug-2001 |
Peter Wemm <peter@FreeBSD.org> |
Build modules from the main src/sys tree. Tidy up some loose ends.. there were extra -I's being added to CFLAGS for no reason.
|
| #
c68159a6
|
| 06-Jan-2001 |
David E. O'Brien <obrien@FreeBSD.org> |
Use a consistent style and one much closer to the rest of /usr/src
|
| #
64db83a8
|
| 27-May-2000 |
Peter Wemm <peter@FreeBSD.org> |
Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead of encoding the relative path.
|
| #
b95b56c7
|
| 08-May-2000 |
Yoshihiro Takahashi <nyan@FreeBSD.org> |
Added PC-98 supports.
Obtained from: FreeBSD(98) 4.0R-Rev01
|
| #
56ca3996
|
| 04-May-2000 |
Peter Wemm <peter@FreeBSD.org> |
Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk. This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. Thi
Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk. This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
show more ...
|
| #
c3aac50f
|
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
$Id$ -> $FreeBSD$
|
| #
a654d072
|
| 16-Oct-1998 |
Peter Wemm <peter@FreeBSD.org> |
Sample initial set of kld-ified modules. Not all have been completely converted yet. These are more of a starting point. This is NOT connected to the parent Makefile.
OK'ed by jkh (who is ever so
Sample initial set of kld-ified modules. Not all have been completely converted yet. These are more of a starting point. This is NOT connected to the parent Makefile.
OK'ed by jkh (who is ever so patiently waiting)
show more ...
|
| #
609e0c94
|
| 01-Feb-1998 |
Bruce Evans <bde@FreeBSD.org> |
Don't put a path to "sys" in ${CFLAGS} here. bsd.kmod.mk now handles this more generally.
|
| #
ce834215
|
| 15-Jul-1997 |
Kazutaka YOKOTA <yokota@FreeBSD.org> |
Incorporated lots of fixes and suggestions from Bruce and changes to facilitate the new saver loading/unloading notification interface in syscons.
daemon_saver: - M_NOWAIT was wrong, since NULL retu
Incorporated lots of fixes and suggestions from Bruce and changes to facilitate the new saver loading/unloading notification interface in syscons.
daemon_saver: - M_NOWAIT was wrong, since NULL returns are not handled. Just use M_WAITOK. - use `ostype' instead of hard-coded "FreeBSD". Now there is no more hard-coded string! (But, who will run this screen saver on other OS?!) - put macros and data declarations in a consistent order. - -DDEAMON_ONLY and -DSHOW_HOSTNAME options added in the previous commit are removed. Options of this kind can go stale and no one notices because no one uses them. DEAMON_ONLY is just removed. SHOW_HOSTNAME is made default.
snake_saver: - use `ostype' and `osrelease' as in the daemon saver. The string changes slightly - there was a hyphen after "FreeBSD"; now there is a space. (It is consistent with uname -a, like the daemon server already is.)
all screen savers: - Use the new add_scrn_saver()/remove_scrn_saver() in syscons.c to declare loading/unloading of a screen saver. Removed reference to `current_saver' and the variable `old_saver' as they are not necessary anymore. - The blank, fade and green screen savers manipulate VGA registers. Module loading should fail for non-VGA cards. - `scrn_blanked' is consistently treated as a number/counter rather than boolean. - Some savers touch `scp->start' and `scp->end' to force entire screen update when stopping themselves. This is unnecessary now because syscons.c takes care of that. - cleared up many unused or unnecessary #include statements. - Removed -DLKM from Makefiles.
YOU NEED TO RECOMPILE BOTH SCREEN SAVERS AND KERNEL AS OF THIS CHANGE.
show more ...
|
| #
f4863d1a
|
| 24-Jun-1997 |
Kazutaka YOKOTA <yokota@FreeBSD.org> |
Take the OS release string from the kernel variable `osrelease' rather than hard-code it in the message text. Optinally include the host name in the message if SHOW_HOSTNAME is defined.
The origianl
Take the OS release string from the kernel variable `osrelease' rather than hard-code it in the message text. Optinally include the host name in the message if SHOW_HOSTNAME is defined.
The origianl idea and sample code submitted by Angelo Turetta <ATuretta@stylo.it>.
show more ...
|
| #
e8adebf2
|
| 21-May-1997 |
Kazutaka YOKOTA <yokota@FreeBSD.org> |
Introducing "Jumping Daemon" screen saver. This is really cute and eye-catching :-)
Submitted by: ssigala@globalnet.it
|
| #
e9ac4169
|
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
| #
031beb4e
|
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
| #
193d9e76
|
| 04-Mar-2017 |
Enji Cooper <ngie@FreeBSD.org> |
sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic
Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
|
| #
ab3626d5
|
| 06-Nov-2002 |
Yoshihiro Takahashi <nyan@FreeBSD.org> |
Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.
|
| #
17d6c636
|
| 11-Jan-2002 |
Ruslan Ermilov <ru@FreeBSD.org> |
Drop <bsd.man.mk> support from <bsd.kmod.mk>.
Not objected to by: -current
|
| #
3de6da9c
|
| 09-Aug-2001 |
Peter Wemm <peter@FreeBSD.org> |
Build modules from the main src/sys tree. Tidy up some loose ends.. there were extra -I's being added to CFLAGS for no reason.
|