2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for the kernel image.
|
2011-04-27 15:00:52 +02:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
.include "nbsd.config"
|
2005-08-23 14:53:35 +02:00
|
|
|
|
2011-06-24 17:20:25 +02:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
u=/usr
|
|
|
|
MDEC= /usr/mdec
|
2011-04-21 15:20:55 +02:00
|
|
|
GEN_FILES= *.bak image kernel *.iso *.iso.gz cdfdimage rootimage src
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-08-23 14:53:35 +02:00
|
|
|
# Specify the programs that are part of the system image.
|
2011-06-24 17:20:25 +02:00
|
|
|
KERNEL= kernel
|
2012-01-30 13:27:23 +01:00
|
|
|
# PROGRAMS are in the order they should be loaded by boot
|
2011-06-24 17:20:25 +02:00
|
|
|
PROGRAMS= \
|
2010-03-23 00:44:55 +01:00
|
|
|
../servers/ds/ds \
|
|
|
|
../servers/rs/rs \
|
2005-05-03 17:37:34 +02:00
|
|
|
../servers/pm/pm \
|
Scheduling server (by Bjorn Swift)
In this second phase, scheduling is moved from PM to its own
scheduler (see r6557 for phase one). In the next phase we hope to a)
include useful information in the "out of quantum" message and b)
create some simple scheduling policy that makes use of that
information.
When the system starts up, PM will iterate over its process table and
ask SCHED to take over scheduling unprivileged processes. This is
done by sending a SCHEDULING_START message to SCHED. This message
includes the processes endpoint, the parent's endpoint and its nice
level. The scheduler adds this process to its schedproc table, issues
a schedctl, and returns its own endpoint to PM - as the endpoint of
the effective scheduler. When a process terminates, a SCHEDULING_STOP
message is sent to the scheduler.
The reason for this effective endpoint is for future compatibility.
Some day, we may have a scheduler that, instead of scheduling the
process itself, forwards the SCHEDULING_START message on to another
scheduler.
PM has information on who schedules whom. As such, scheduling
messages from user-land are sent through PM. An example is when
processes change their priority, using nice(). In that case, a
getsetpriority message is sent to PM, which then sends a
SCHEDULING_SET_NICE to the process's effective scheduler.
When a process is forked through PM, it inherits its parent's
scheduler, but is spawned with an empty quantum. As before, a request
to fork a process flows through VM before returning to PM, which then
wakes up the child process. This flow has been modified slightly so
that PM notifies the scheduler of the new process, before waking up
the child process. If the scheduler fails to take over scheduling,
the child process is torn down and the fork fails with an erroneous
value.
Process priority is entirely decided upon using nice levels. PM
stores a copy of each process's nice level and when a child is
forked, its parent's nice level is sent in the SCHEDULING_START
message. How this level is mapped to a priority queue is up to the
scheduler. It should be noted that the nice level is used to
determine the max_priority and the parent could have been in a lower
priority when it was spawned. To prevent a CPU intensive process from
hawking the CPU by continuously forking children that get scheduled
in the max_priority, the scheduler should determine in which queue
the parent is currently scheduled, and schedule the child in that
same queue.
Other fixes: The USER_Q in kernel/proc.h was incorrectly defined as
NR_SCHED_QUEUES/2. That results in a "off by one" error when
converting priority->nice->priority for nice=0. This also had the
side effect that if someone were to set the MAX_USER_Q to something
else than 0, then USER_Q would be off.
2010-05-18 15:39:04 +02:00
|
|
|
../servers/sched/sched \
|
2012-02-13 16:28:04 +01:00
|
|
|
../servers/vfs/vfs \
|
2010-05-27 00:49:57 +02:00
|
|
|
../drivers/memory/memory \
|
2005-07-08 19:30:01 +02:00
|
|
|
../drivers/log/log \
|
2009-07-02 18:25:31 +02:00
|
|
|
../drivers/tty/tty \
|
2006-10-25 15:40:36 +02:00
|
|
|
../servers/mfs/mfs \
|
2008-11-19 13:26:10 +01:00
|
|
|
../servers/vm/vm \
|
2012-02-13 16:28:04 +01:00
|
|
|
../servers/pfs/pfs \
|
2006-02-15 12:18:21 +01:00
|
|
|
../servers/init/init
|
2005-08-03 18:06:35 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
usage:
|
|
|
|
@echo " " >&2
|
2005-05-02 16:30:04 +02:00
|
|
|
@echo "Master Makefile to create new MINIX configuration." >& 2
|
|
|
|
@echo "Root privileges are required." >&2
|
|
|
|
@echo " " >&2
|
2005-04-21 16:53:53 +02:00
|
|
|
@echo "Usage:" >&2
|
2005-05-19 11:36:44 +02:00
|
|
|
@echo " make includes # Install include files" >&2
|
2005-07-26 14:51:35 +02:00
|
|
|
@echo " make depend # Generate dependency files" >&2
|
2005-08-23 14:53:35 +02:00
|
|
|
@echo " make services # Compile and install all services" >&2
|
|
|
|
@echo " make image # Make needed services and create boot image" >&2
|
2005-05-04 11:30:49 +02:00
|
|
|
@echo " make install # Make image, and install to hard disk" >&2
|
2005-04-21 16:53:53 +02:00
|
|
|
@echo " make hdboot # Make image, and install to hard disk" >&2
|
|
|
|
@echo " make fdboot # Make image, and install to floppy disk" >&2
|
|
|
|
@echo " make bootable # Make hard disk bootable" >&2
|
2011-04-27 15:00:52 +02:00
|
|
|
@echo " make nbsd_fetch # Download current NetBSD reference sources" >&2
|
|
|
|
@echo " make nbsd_diff # Update minix-port.patch in NetBSD sources" >&2
|
2005-04-21 16:53:53 +02:00
|
|
|
@echo " make clean # Remove all compiler results, except libs" >&2
|
|
|
|
@echo " " >&2
|
|
|
|
@echo "To create a fresh MINIX configuration, try:" >&2
|
2005-08-23 14:53:35 +02:00
|
|
|
@echo " make clean install # new boot image" >&2
|
|
|
|
@echo " make fresh install # new everything" >&2
|
2005-04-21 16:53:53 +02:00
|
|
|
@echo " " >&2
|
|
|
|
|
2005-08-24 18:49:09 +02:00
|
|
|
all: services image
|
2005-08-22 14:38:22 +02:00
|
|
|
|
2011-06-24 17:20:25 +02:00
|
|
|
image: includes services
|
|
|
|
mkimage $(PROGRAMS)
|
2006-03-13 09:47:05 +01:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# rebuild the program or system libraries
|
2005-05-19 11:36:44 +02:00
|
|
|
includes:
|
2010-06-22 14:03:09 +02:00
|
|
|
$(MAKE) -C .. includes
|
2005-05-19 11:36:44 +02:00
|
|
|
|
2011-04-21 15:20:55 +02:00
|
|
|
depend: includes .gitignore
|
2010-06-22 14:03:09 +02:00
|
|
|
$(MAKE) -C ../ depend
|
2005-06-24 18:25:12 +02:00
|
|
|
|
2011-04-21 15:20:55 +02:00
|
|
|
.gitignore: Makefile
|
|
|
|
echo $(GEN_FILES) | tr ' ' '\n' >.gitignore
|
|
|
|
|
2010-08-26 21:54:49 +02:00
|
|
|
services: includes kernel servers .WAIT drivers
|
|
|
|
|
|
|
|
kernel: includes
|
2010-06-22 14:03:09 +02:00
|
|
|
$(MAKE) -C ../kernel
|
2010-08-26 21:54:49 +02:00
|
|
|
|
2011-11-02 18:46:06 +01:00
|
|
|
servers: includes
|
|
|
|
$(MAKE) -C ../servers all install
|
2010-08-26 21:54:49 +02:00
|
|
|
|
|
|
|
drivers: includes servers
|
2010-07-06 11:19:04 +02:00
|
|
|
$(MAKE) -C ../drivers all install
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
# make bootable and place system images
|
|
|
|
bootable:
|
|
|
|
exec su root mkboot bootable
|
|
|
|
|
2011-06-24 17:20:25 +02:00
|
|
|
hdboot: image
|
2012-01-30 13:27:23 +01:00
|
|
|
rm -rf /boot/minix/.temp/
|
|
|
|
mkdir -p /boot/minix/.temp
|
|
|
|
# mod_0 is used to make alphabetical order equal to the boot order
|
|
|
|
for i in ${PROGRAMS}; \
|
|
|
|
do \
|
|
|
|
let n=n+1 >/dev/null; \
|
|
|
|
[ "$$n" -ge 10 ] && prefix="mod" || prefix="mod0"; \
|
2012-02-11 19:31:25 +01:00
|
|
|
newname="/boot/minix/.temp/$${prefix}$${n}_`basename $$i`"; \
|
|
|
|
cp $$i $$newname; \
|
2012-02-17 00:06:42 +01:00
|
|
|
if [ -d /boot/image ]; \
|
|
|
|
then ln -f $$newname /boot/`basename $$i`; \
|
2012-01-17 16:04:58 +01:00
|
|
|
else strip -s $$newname; \
|
|
|
|
gzip $$newname; \
|
2012-02-17 00:06:42 +01:00
|
|
|
fi \
|
2012-01-30 13:27:23 +01:00
|
|
|
done
|
2012-02-16 19:14:33 +01:00
|
|
|
cp ../kernel/kernel /boot/minix/.temp/
|
2012-01-17 16:04:58 +01:00
|
|
|
strip -s /boot/minix/.temp/kernel
|
2012-02-11 19:31:25 +01:00
|
|
|
[ -d /boot/image ] && ln -f /boot/minix/.temp/kernel /boot/kernel || true
|
2012-02-14 19:58:27 +01:00
|
|
|
sh mkboot $@ minix
|
2012-02-16 14:38:38 +01:00
|
|
|
sh ../commands/update_bootcfg/update_bootcfg.sh
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
fdboot: image
|
|
|
|
exec su root mkboot $@
|
2005-06-30 17:56:19 +02:00
|
|
|
@sync
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-10-21 15:46:47 +02:00
|
|
|
install: includes services hdboot
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2011-04-27 15:00:52 +02:00
|
|
|
# download and update NetBSD reference sources.
|
|
|
|
nbsd_fetch:
|
2011-12-14 01:14:11 +01:00
|
|
|
export CVS_RSH=ssh; \
|
|
|
|
echo "retrieving hierarchies from ${NBSD_CVSROOT}"; \
|
2012-03-13 02:07:22 +01:00
|
|
|
IFS=,; \
|
|
|
|
cat nbsd_ports | grep -v '^#' | while read port ; \
|
|
|
|
do set $$port; \
|
|
|
|
date=$$1; minixpath=$$2; origpath=$$3; \
|
|
|
|
if [ $$# -lt 3 ]; then origpath=$$2; fi; \
|
|
|
|
echo "retrieving $$origpath .."; \
|
|
|
|
cd ${MINIXSRCDIR} && cvs -q -d ${NBSD_CVSROOT} co -N -D "$$date UTC" -d nbsdsrc "src/$$origpath" ; \
|
2011-12-14 01:14:11 +01:00
|
|
|
done
|
2011-04-27 15:00:52 +02:00
|
|
|
|
|
|
|
nbsd_diff:
|
2012-03-13 02:07:22 +01:00
|
|
|
find ${MINIXSRCDIR} -name minix-port.patch | xargs rm
|
|
|
|
cat nbsd_ports | grep -v '^#' | \
|
|
|
|
( cd ${MINIXSRCDIR} && awk -F, '{ minixpath=$$2; origpath=$$3; if(NF < 3) { origpath=$$2; } system("sh tools/nbsd_diff.sh " \
|
|
|
|
"nbsdsrc/src/"origpath" "minixpath" "minixpath"/minix-port.patch");}' )
|
|
|
|
find ${MINIXSRCDIR} -name minix-port.patch | xargs wc -l | sort -n
|
2011-04-27 15:00:52 +02:00
|
|
|
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# clean up compile results
|
|
|
|
clean:
|
2010-06-22 14:03:09 +02:00
|
|
|
$(MAKE) -C ../kernel $@
|
|
|
|
$(MAKE) -C ../servers $@
|
|
|
|
$(MAKE) -C ../drivers $@
|
2011-04-21 15:20:55 +02:00
|
|
|
rm -rf $(GEN_FILES)
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-06-01 16:44:36 +02:00
|
|
|
cleandepend::
|
2010-06-22 14:03:09 +02:00
|
|
|
$(MAKE) -C ../kernel $@
|
|
|
|
$(MAKE) -C ../servers $@
|
|
|
|
$(MAKE) -C ../drivers $@
|