├── 386 ├── ahci.h ├── devether.c ├── devpmc.c ├── devrtc.c ├── ether8139.c ├── ether8169.c ├── ether82557.c ├── ether82563.c ├── ether82598.c ├── etherigbe.c ├── etherm10g.c ├── etherm10g2k.i ├── etherm10g4k.i ├── kbd.c ├── pci.c ├── pmc.h ├── pmcio.c ├── sdiahci.c ├── uarti8250.c └── uartpci.c ├── README ├── boot ├── aux.c ├── boot.c ├── boot.h ├── bootauth.c ├── bootcache.c ├── bootip.c ├── doauthenticate.c ├── embed.c ├── getpasswd.c ├── libboot.a6 ├── local.c ├── nopsession.c ├── paq.c ├── printstub.c └── settime.c ├── ip ├── arp.c ├── chandial.c ├── devip.c ├── ethermedium.c ├── gre.c ├── icmp.c ├── icmp6.c ├── ip.c ├── ip.h ├── ipaux.c ├── ipifc.c ├── iproute.c ├── ipv6.c ├── ipv6.h ├── loopbackmedium.c ├── netdevmedium.c ├── netlog.c ├── nullmedium.c ├── pktmedium.c ├── ptclbsum.c ├── tcp.c └── udp.c ├── k10 ├── acpi.h ├── amd64.h ├── amd64l.h ├── apic.c ├── apic.h ├── arch.c ├── archk10.c ├── asm.c ├── cga.c ├── crap.c ├── dat.h ├── devacpi.c ├── devarch.c ├── etherif.h ├── fns.h ├── fpu.c ├── hpet.c ├── ht.c ├── i8254.c ├── i8259.c ├── init9.c ├── io.h ├── ioapic.c ├── k10 ├── k10aoe ├── k10cpu ├── k10root ├── kn ├── l32p.s ├── l64cpuid.s ├── l64fpu.s ├── l64idt.s ├── l64sipi.s ├── l64syscall.s ├── l64v.s ├── main.c ├── map.c ├── mem.h ├── memory.c ├── mkfile ├── mmu.c ├── mp.c ├── multiboot.c ├── root │ ├── cpu.c │ ├── k10root.namespace │ ├── k10root.proto │ ├── k10root.rc │ └── tcp17010 ├── sipi.c ├── sipi.h ├── syscall.c ├── trap.c └── vsvm.c ├── mk ├── bootmkfile ├── mkenum ├── mkroot ├── mkrootall ├── mkrr ├── parse └── portmkfile ├── port ├── alarm.c ├── allocb.c ├── aoe.h ├── cache.c ├── chan.c ├── dev.c ├── devaoe.c ├── devcap.c ├── devcons.c ├── devdup.c ├── devenv.c ├── devkprof.c ├── devlater.c ├── devmnt.c ├── devpipe.c ├── devprobe.c ├── devproc.c ├── devptrace.c ├── devroot.c ├── devsd.c ├── devsrv.c ├── devssl.c ├── devtab.c ├── devtls.c ├── devtrace.c ├── devuart.c ├── devwd.c ├── edf.c ├── edf.h ├── error.h ├── ethermii.c ├── ethermii.h ├── fault.c ├── initcode.c ├── latin1.c ├── latin1.h ├── lib.h ├── mnt.c ├── mul64fract.c ├── nalloc.c ├── nallocs ├── netif.c ├── netif.h ├── nocache.c ├── noedf.c ├── page.c ├── parse.c ├── path.c ├── pgrp.c ├── portclock.c ├── portdat.h ├── portfns.h ├── print.c ├── proc.c ├── ps.c ├── qio.c ├── qlock.c ├── qmalloc.c ├── random.c ├── rdb.c ├── rebootcmd.c ├── sd.h ├── sdaoe.c ├── sdscsi.c ├── segment.c ├── sysauth.c ├── syscallfmt.c ├── sysfile.c ├── sysproc.c ├── sysseg.c ├── systab.c ├── taslock.c └── tod.c └── root ├── common ├── cpu.c ├── mkfile ├── profile ├── rcmain ├── tcp23 └── tcp564 /386/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/ahci.h -------------------------------------------------------------------------------- /386/devether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/devether.c -------------------------------------------------------------------------------- /386/devpmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/devpmc.c -------------------------------------------------------------------------------- /386/devrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/devrtc.c -------------------------------------------------------------------------------- /386/ether8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/ether8139.c -------------------------------------------------------------------------------- /386/ether8169.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/ether8169.c -------------------------------------------------------------------------------- /386/ether82557.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/ether82557.c -------------------------------------------------------------------------------- /386/ether82563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/ether82563.c -------------------------------------------------------------------------------- /386/ether82598.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/ether82598.c -------------------------------------------------------------------------------- /386/etherigbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/etherigbe.c -------------------------------------------------------------------------------- /386/etherm10g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/etherm10g.c -------------------------------------------------------------------------------- /386/etherm10g2k.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/etherm10g2k.i -------------------------------------------------------------------------------- /386/etherm10g4k.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/etherm10g4k.i -------------------------------------------------------------------------------- /386/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/kbd.c -------------------------------------------------------------------------------- /386/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/pci.c -------------------------------------------------------------------------------- /386/pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/pmc.h -------------------------------------------------------------------------------- /386/pmcio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/pmcio.c -------------------------------------------------------------------------------- /386/sdiahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/sdiahci.c -------------------------------------------------------------------------------- /386/uarti8250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/uarti8250.c -------------------------------------------------------------------------------- /386/uartpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/386/uartpci.c -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Nix mark IV source 2 | This is under the Plan 9 from Bell Labs license 3 | -------------------------------------------------------------------------------- /boot/aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/aux.c -------------------------------------------------------------------------------- /boot/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/boot.c -------------------------------------------------------------------------------- /boot/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/boot.h -------------------------------------------------------------------------------- /boot/bootauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/bootauth.c -------------------------------------------------------------------------------- /boot/bootcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/bootcache.c -------------------------------------------------------------------------------- /boot/bootip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/bootip.c -------------------------------------------------------------------------------- /boot/doauthenticate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/doauthenticate.c -------------------------------------------------------------------------------- /boot/embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/embed.c -------------------------------------------------------------------------------- /boot/getpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/getpasswd.c -------------------------------------------------------------------------------- /boot/libboot.a6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/libboot.a6 -------------------------------------------------------------------------------- /boot/local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/local.c -------------------------------------------------------------------------------- /boot/nopsession.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/nopsession.c -------------------------------------------------------------------------------- /boot/paq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/paq.c -------------------------------------------------------------------------------- /boot/printstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/printstub.c -------------------------------------------------------------------------------- /boot/settime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/boot/settime.c -------------------------------------------------------------------------------- /ip/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/arp.c -------------------------------------------------------------------------------- /ip/chandial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/chandial.c -------------------------------------------------------------------------------- /ip/devip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/devip.c -------------------------------------------------------------------------------- /ip/ethermedium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ethermedium.c -------------------------------------------------------------------------------- /ip/gre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/gre.c -------------------------------------------------------------------------------- /ip/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/icmp.c -------------------------------------------------------------------------------- /ip/icmp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/icmp6.c -------------------------------------------------------------------------------- /ip/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ip.c -------------------------------------------------------------------------------- /ip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ip.h -------------------------------------------------------------------------------- /ip/ipaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ipaux.c -------------------------------------------------------------------------------- /ip/ipifc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ipifc.c -------------------------------------------------------------------------------- /ip/iproute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/iproute.c -------------------------------------------------------------------------------- /ip/ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ipv6.c -------------------------------------------------------------------------------- /ip/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ipv6.h -------------------------------------------------------------------------------- /ip/loopbackmedium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/loopbackmedium.c -------------------------------------------------------------------------------- /ip/netdevmedium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/netdevmedium.c -------------------------------------------------------------------------------- /ip/netlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/netlog.c -------------------------------------------------------------------------------- /ip/nullmedium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/nullmedium.c -------------------------------------------------------------------------------- /ip/pktmedium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/pktmedium.c -------------------------------------------------------------------------------- /ip/ptclbsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/ptclbsum.c -------------------------------------------------------------------------------- /ip/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/tcp.c -------------------------------------------------------------------------------- /ip/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/ip/udp.c -------------------------------------------------------------------------------- /k10/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/acpi.h -------------------------------------------------------------------------------- /k10/amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/amd64.h -------------------------------------------------------------------------------- /k10/amd64l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/amd64l.h -------------------------------------------------------------------------------- /k10/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/apic.c -------------------------------------------------------------------------------- /k10/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/apic.h -------------------------------------------------------------------------------- /k10/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/arch.c -------------------------------------------------------------------------------- /k10/archk10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/archk10.c -------------------------------------------------------------------------------- /k10/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/asm.c -------------------------------------------------------------------------------- /k10/cga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/cga.c -------------------------------------------------------------------------------- /k10/crap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/crap.c -------------------------------------------------------------------------------- /k10/dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/dat.h -------------------------------------------------------------------------------- /k10/devacpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/devacpi.c -------------------------------------------------------------------------------- /k10/devarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/devarch.c -------------------------------------------------------------------------------- /k10/etherif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/etherif.h -------------------------------------------------------------------------------- /k10/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/fns.h -------------------------------------------------------------------------------- /k10/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/fpu.c -------------------------------------------------------------------------------- /k10/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/hpet.c -------------------------------------------------------------------------------- /k10/ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/ht.c -------------------------------------------------------------------------------- /k10/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/i8254.c -------------------------------------------------------------------------------- /k10/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/i8259.c -------------------------------------------------------------------------------- /k10/init9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/init9.c -------------------------------------------------------------------------------- /k10/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/io.h -------------------------------------------------------------------------------- /k10/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/ioapic.c -------------------------------------------------------------------------------- /k10/k10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/k10 -------------------------------------------------------------------------------- /k10/k10aoe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/k10aoe -------------------------------------------------------------------------------- /k10/k10cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/k10cpu -------------------------------------------------------------------------------- /k10/k10root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/k10root -------------------------------------------------------------------------------- /k10/kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/kn -------------------------------------------------------------------------------- /k10/l32p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l32p.s -------------------------------------------------------------------------------- /k10/l64cpuid.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l64cpuid.s -------------------------------------------------------------------------------- /k10/l64fpu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l64fpu.s -------------------------------------------------------------------------------- /k10/l64idt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l64idt.s -------------------------------------------------------------------------------- /k10/l64sipi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l64sipi.s -------------------------------------------------------------------------------- /k10/l64syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l64syscall.s -------------------------------------------------------------------------------- /k10/l64v.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/l64v.s -------------------------------------------------------------------------------- /k10/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/main.c -------------------------------------------------------------------------------- /k10/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/map.c -------------------------------------------------------------------------------- /k10/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/mem.h -------------------------------------------------------------------------------- /k10/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/memory.c -------------------------------------------------------------------------------- /k10/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/mkfile -------------------------------------------------------------------------------- /k10/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/mmu.c -------------------------------------------------------------------------------- /k10/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/mp.c -------------------------------------------------------------------------------- /k10/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/multiboot.c -------------------------------------------------------------------------------- /k10/root/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/root/cpu.c -------------------------------------------------------------------------------- /k10/root/k10root.namespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/root/k10root.namespace -------------------------------------------------------------------------------- /k10/root/k10root.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/root/k10root.proto -------------------------------------------------------------------------------- /k10/root/k10root.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/root/k10root.rc -------------------------------------------------------------------------------- /k10/root/tcp17010: -------------------------------------------------------------------------------- 1 | #!/bin/cpu -N -R 2 | -------------------------------------------------------------------------------- /k10/sipi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/sipi.c -------------------------------------------------------------------------------- /k10/sipi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/sipi.h -------------------------------------------------------------------------------- /k10/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/syscall.c -------------------------------------------------------------------------------- /k10/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/trap.c -------------------------------------------------------------------------------- /k10/vsvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/k10/vsvm.c -------------------------------------------------------------------------------- /mk/bootmkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/bootmkfile -------------------------------------------------------------------------------- /mk/mkenum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/mkenum -------------------------------------------------------------------------------- /mk/mkroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/mkroot -------------------------------------------------------------------------------- /mk/mkrootall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/mkrootall -------------------------------------------------------------------------------- /mk/mkrr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/mkrr -------------------------------------------------------------------------------- /mk/parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/parse -------------------------------------------------------------------------------- /mk/portmkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/mk/portmkfile -------------------------------------------------------------------------------- /port/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/alarm.c -------------------------------------------------------------------------------- /port/allocb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/allocb.c -------------------------------------------------------------------------------- /port/aoe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/aoe.h -------------------------------------------------------------------------------- /port/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/cache.c -------------------------------------------------------------------------------- /port/chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/chan.c -------------------------------------------------------------------------------- /port/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/dev.c -------------------------------------------------------------------------------- /port/devaoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devaoe.c -------------------------------------------------------------------------------- /port/devcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devcap.c -------------------------------------------------------------------------------- /port/devcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devcons.c -------------------------------------------------------------------------------- /port/devdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devdup.c -------------------------------------------------------------------------------- /port/devenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devenv.c -------------------------------------------------------------------------------- /port/devkprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devkprof.c -------------------------------------------------------------------------------- /port/devlater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devlater.c -------------------------------------------------------------------------------- /port/devmnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devmnt.c -------------------------------------------------------------------------------- /port/devpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devpipe.c -------------------------------------------------------------------------------- /port/devprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devprobe.c -------------------------------------------------------------------------------- /port/devproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devproc.c -------------------------------------------------------------------------------- /port/devptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devptrace.c -------------------------------------------------------------------------------- /port/devroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devroot.c -------------------------------------------------------------------------------- /port/devsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devsd.c -------------------------------------------------------------------------------- /port/devsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devsrv.c -------------------------------------------------------------------------------- /port/devssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devssl.c -------------------------------------------------------------------------------- /port/devtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devtab.c -------------------------------------------------------------------------------- /port/devtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devtls.c -------------------------------------------------------------------------------- /port/devtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devtrace.c -------------------------------------------------------------------------------- /port/devuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devuart.c -------------------------------------------------------------------------------- /port/devwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/devwd.c -------------------------------------------------------------------------------- /port/edf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/edf.c -------------------------------------------------------------------------------- /port/edf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/edf.h -------------------------------------------------------------------------------- /port/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/error.h -------------------------------------------------------------------------------- /port/ethermii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/ethermii.c -------------------------------------------------------------------------------- /port/ethermii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/ethermii.h -------------------------------------------------------------------------------- /port/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/fault.c -------------------------------------------------------------------------------- /port/initcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/initcode.c -------------------------------------------------------------------------------- /port/latin1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/latin1.c -------------------------------------------------------------------------------- /port/latin1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/latin1.h -------------------------------------------------------------------------------- /port/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/lib.h -------------------------------------------------------------------------------- /port/mnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/mnt.c -------------------------------------------------------------------------------- /port/mul64fract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/mul64fract.c -------------------------------------------------------------------------------- /port/nalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/nalloc.c -------------------------------------------------------------------------------- /port/nallocs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /port/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/netif.c -------------------------------------------------------------------------------- /port/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/netif.h -------------------------------------------------------------------------------- /port/nocache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/nocache.c -------------------------------------------------------------------------------- /port/noedf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/noedf.c -------------------------------------------------------------------------------- /port/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/page.c -------------------------------------------------------------------------------- /port/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/parse.c -------------------------------------------------------------------------------- /port/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/path.c -------------------------------------------------------------------------------- /port/pgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/pgrp.c -------------------------------------------------------------------------------- /port/portclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/portclock.c -------------------------------------------------------------------------------- /port/portdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/portdat.h -------------------------------------------------------------------------------- /port/portfns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/portfns.h -------------------------------------------------------------------------------- /port/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/print.c -------------------------------------------------------------------------------- /port/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/proc.c -------------------------------------------------------------------------------- /port/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/ps.c -------------------------------------------------------------------------------- /port/qio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/qio.c -------------------------------------------------------------------------------- /port/qlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/qlock.c -------------------------------------------------------------------------------- /port/qmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/qmalloc.c -------------------------------------------------------------------------------- /port/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/random.c -------------------------------------------------------------------------------- /port/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/rdb.c -------------------------------------------------------------------------------- /port/rebootcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/rebootcmd.c -------------------------------------------------------------------------------- /port/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sd.h -------------------------------------------------------------------------------- /port/sdaoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sdaoe.c -------------------------------------------------------------------------------- /port/sdscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sdscsi.c -------------------------------------------------------------------------------- /port/segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/segment.c -------------------------------------------------------------------------------- /port/sysauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sysauth.c -------------------------------------------------------------------------------- /port/syscallfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/syscallfmt.c -------------------------------------------------------------------------------- /port/sysfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sysfile.c -------------------------------------------------------------------------------- /port/sysproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sysproc.c -------------------------------------------------------------------------------- /port/sysseg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/sysseg.c -------------------------------------------------------------------------------- /port/systab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/systab.c -------------------------------------------------------------------------------- /port/taslock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/taslock.c -------------------------------------------------------------------------------- /port/tod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/port/tod.c -------------------------------------------------------------------------------- /root/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/root/common -------------------------------------------------------------------------------- /root/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/root/cpu.c -------------------------------------------------------------------------------- /root/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/root/mkfile -------------------------------------------------------------------------------- /root/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/root/profile -------------------------------------------------------------------------------- /root/rcmain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/root/rcmain -------------------------------------------------------------------------------- /root/tcp23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjballest/nixMarkIV/HEAD/root/tcp23 -------------------------------------------------------------------------------- /root/tcp564: -------------------------------------------------------------------------------- 1 | #!/bin/rc 2 | exec exportfs -r / 3 | --------------------------------------------------------------------------------