2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for the kernel image.
|
2005-08-23 14:53:35 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
u=/usr
|
|
|
|
CC= exec cc
|
|
|
|
CFLAGS= -O -D_MINIX -D_POSIX_SOURCE
|
|
|
|
MDEC= /usr/mdec
|
|
|
|
|
2005-08-23 14:53:35 +02:00
|
|
|
# Specify the programs that are part of the system image.
|
2005-04-21 16:53:53 +02:00
|
|
|
PROGRAMS= ../kernel/kernel \
|
2005-05-03 17:37:34 +02:00
|
|
|
../servers/pm/pm \
|
2006-10-25 15:40:36 +02:00
|
|
|
../servers/vfs/vfs \
|
2005-08-23 13:28:16 +02:00
|
|
|
../servers/rs/rs \
|
2005-04-21 16:53:53 +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 \
|
|
|
|
../servers/ds/ds \
|
2006-10-25 15:40:36 +02:00
|
|
|
../servers/mfs/mfs \
|
2008-11-19 13:26:10 +01:00
|
|
|
../servers/vm/vm \
|
- Introduce support for sticky bit.
- Revise VFS-FS protocol and update VFS/MFS/ISOFS accordingly.
- Clean up MFS by removing old, dead code (backwards compatibility is broken by
the new VFS-FS protocol, anyway) and rewrite other parts. Also, make sure all
functions have proper banners and prototypes.
- VFS should always provide a (syntactically) valid path to the FS; no need for
the FS to do sanity checks when leaving/entering mount points.
- Fix several bugs in MFS:
- Several path lookup bugs in MFS.
- A link can be too big for the path buffer.
- A mountpoint can become inaccessible when the creation of a new inode
fails, because the inode already exists and is a mountpoint.
- Introduce support for supplemental groups.
- Add test 46 to test supplemental group functionality (and removed obsolete
suppl. tests from test 2).
- Clean up VFS (not everything is done yet).
- ISOFS now opens device read-only. This makes the -r flag in the mount command
unnecessary (but will still report to be mounted read-write).
- Introduce PipeFS. PipeFS is a new FS that handles all anonymous and
named pipes. However, named pipes still reside on the (M)FS, as they are part
of the file system on disk. To make this work VFS now has a concept of
'mapped' inodes, which causes read, write, truncate and stat requests to be
redirected to the mapped FS, and all other requests to the original FS.
2009-12-20 21:27:14 +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-04-21 16:53:53 +02:00
|
|
|
@echo " make libraries # Make system libraries" >&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
|
|
|
|
@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
|
|
|
|
2005-08-24 14:58:35 +02:00
|
|
|
image: includes
|
2007-04-12 17:13:10 +02:00
|
|
|
cd ../kernel && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS)
|
2005-08-23 14:53:35 +02:00
|
|
|
cd ../servers && $(MAKE) image
|
|
|
|
cd ../drivers && $(MAKE) image
|
2005-04-21 16:53:53 +02:00
|
|
|
installboot -image $@ $(PROGRAMS)
|
|
|
|
|
2006-03-13 09:47:05 +01:00
|
|
|
image_small: includes
|
2007-04-12 17:13:10 +02:00
|
|
|
cd ../kernel && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS)
|
2006-03-13 09:47:05 +01:00
|
|
|
cd ../servers && $(MAKE) EXTRA_OPTS=-D_MINIX_SMALL=1 image
|
|
|
|
cd ../drivers && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS) image
|
|
|
|
installboot -image $@ $(PROGRAMS)
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# rebuild the program or system libraries
|
2005-05-19 11:36:44 +02:00
|
|
|
includes:
|
2005-10-31 13:21:52 +01:00
|
|
|
cd ../include && $(MAKE) install
|
2005-05-19 11:36:44 +02:00
|
|
|
|
2005-08-03 18:06:35 +02:00
|
|
|
depend: includes
|
2005-06-24 18:25:12 +02:00
|
|
|
cd ../ && $(MAKE) depend
|
|
|
|
|
2005-08-23 14:53:35 +02:00
|
|
|
services: includes
|
2005-04-21 16:53:53 +02:00
|
|
|
cd ../kernel && $(MAKE)
|
|
|
|
cd ../servers && $(MAKE) install
|
|
|
|
cd ../drivers && $(MAKE) install
|
|
|
|
|
2005-05-19 11:36:44 +02:00
|
|
|
libraries: includes
|
2010-02-16 15:41:33 +01:00
|
|
|
cd ../lib && sh ack_build.sh clean obj depend all install
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
# make bootable and place system images
|
|
|
|
bootable:
|
|
|
|
exec su root mkboot bootable
|
|
|
|
|
|
|
|
hdboot: image
|
|
|
|
exec sh mkboot $@
|
2005-06-30 17:56:19 +02:00
|
|
|
@sync
|
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
|
|
|
|
|
|
|
# clean up compile results
|
|
|
|
clean:
|
|
|
|
cd ../kernel && $(MAKE) $@
|
|
|
|
cd ../servers && $(MAKE) $@
|
|
|
|
cd ../drivers && $(MAKE) $@
|
2006-03-13 09:47:05 +01:00
|
|
|
rm -rf *.bak image image_small *.iso *.iso.gz cdfdimage rootimage src
|
2005-04-21 16:53:53 +02:00
|
|
|
|