e090013056
/etc CHANGES: - /etc/drivers.conf has been renamed to /etc/system.conf. Every entry in the file is now marked as "service" rather than driver. - user "service" has been added to password file /etc/passwd. - docs/UPDATING updated accordingly, as well as every other mention to the old drivers.conf in the system. RS CHANGES: - No more distinction between servers and drivers. - RS_START has been renamed to RS_UP and the old legacy RS_UP and RS_UP_COPY dropped. - RS asks PCI to set / remove ACL entries only for services whose ACL properties have been set. This change eliminates unnecessary warnings. - Temporarily minimize the risk of potential races at boot time or when starting a new service. Upcoming changes will eliminate races completely. - General cleanup.
114 lines
2.6 KiB
Makefile
114 lines
2.6 KiB
Makefile
# Makefile for ramdisk image
|
|
|
|
PROGRAMS=at_wini bios_wini cdprobe dev2name floppy loadramdisk newroot \
|
|
pci sh service sysenv mfs
|
|
EXTRA=system.conf passwd
|
|
|
|
MAKEDEV=/usr/bin/MAKEDEV
|
|
|
|
all: image.c image.s
|
|
|
|
clean:
|
|
rm -rf $(PROGRAMS) $(EXTRA) bintoc image image.c image.s t proto.gen
|
|
|
|
image.c: bintoc image
|
|
./bintoc -o $@ image
|
|
|
|
image.s: image.c
|
|
sed < image.c > $@ 's/^/.data1 /;s/,$$//' || { rm -f $@; false; }
|
|
|
|
# Note for cross compilation: this executable has to be compiled for the
|
|
# host system
|
|
bintoc: bintoc.c
|
|
$(CC) -o $@ bintoc.c
|
|
|
|
image: proto.gen mtab rc $(PROGRAMS) $(EXTRA)
|
|
mkfs image proto.gen || { rm -f image; false; }
|
|
|
|
at_wini: ../../at_wini/at_wini
|
|
install -s ../../$@/$@ $@
|
|
|
|
../../at_wini/at_wini:
|
|
cd ../../at_wini && make
|
|
|
|
bios_wini: ../../bios_wini/bios_wini
|
|
install -s ../../$@/$@ $@
|
|
|
|
../../bios_wini/bios_wini:
|
|
cd ../../bios_wini && make
|
|
|
|
floppy: ../../floppy/floppy
|
|
install -s ../../$@/$@ $@
|
|
|
|
../../floppy/floppy:
|
|
cd ../../floppy && make
|
|
|
|
pci: ../../pci/pci
|
|
install -s ../../$@/$@ $@
|
|
|
|
../../pci/pci:
|
|
cd ../../pci && make
|
|
|
|
cdprobe: ../../../commands/simple/cdprobe
|
|
install -s ../../../commands/simple/$@ $@
|
|
|
|
../../../commands/simple/cdprobe:
|
|
cd ../../../commands/simple && make cdprobe
|
|
|
|
dev2name: ../../../commands/simple/dev2name
|
|
install -s ../../../commands/simple/$@ $@
|
|
|
|
../../../commands/simple/dev2name:
|
|
cd ../../../commands/simple && make dev2name
|
|
|
|
loadramdisk: ../../../commands/simple/loadramdisk
|
|
install -s ../../../commands/simple/$@ $@
|
|
|
|
../../../commands/simple/loadramdisk:
|
|
cd ../../../commands/simple && make loadramdisk
|
|
|
|
newroot: ../../../commands/simple/newroot
|
|
install -s ../../../commands/simple/$@ $@
|
|
|
|
../../../commands/simple/newroot:
|
|
cd ../../../commands/simple && make newroot
|
|
|
|
sysenv: ../../../commands/simple/sysenv
|
|
install -s ../../../commands/simple/$@ $@
|
|
|
|
../../../commands/simple/sysenv:
|
|
cd ../../../commands/simple && make sysenv
|
|
|
|
sh: ../../../commands/ash/sh
|
|
install -s ../../../commands/ash/$@ $@
|
|
|
|
../../../commands/ash/sh:
|
|
cd ../../../commands/ash && make sh
|
|
|
|
service: ../../../servers/rs/service
|
|
install -s ../../../servers/rs/$@ $@
|
|
|
|
../../../servers/rs/service:
|
|
cd ../../../servers/rs && make service
|
|
|
|
mfs: ../../../servers/mfs/mfs
|
|
install -s ../../../servers/mfs/$@ $@
|
|
|
|
../../../servers/mfs/mfs:
|
|
cd ../../../servers/mfs && make
|
|
|
|
system.conf: ../../../etc/system.conf
|
|
install -s ../../../etc/$@ $@
|
|
|
|
passwd: ../../../etc/passwd
|
|
install -s ../../../etc/$@ $@
|
|
|
|
depend:
|
|
mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
|
|
|
|
proto.gen: $(MAKEDEV) proto.sh proto
|
|
sh -e proto.sh >proto.gen
|
|
|
|
# Include generated dependencies.
|
|
include .depend
|
|
|