]> git.lizzy.rs Git - plan9front.git/blob - sys/src/9/pc/mkfile
syscallfmt: use up->syserrstr instead of up->errstr (import from sources)
[plan9front.git] / sys / src / 9 / pc / mkfile
1 CONF=pcf
2 CONFLIST=pcf pccpuf
3 CRAPLIST=pc pccpu pccd pcflop
4 EXTRACOPIES=
5 #EXTRACOPIES=lookout boundary   # copy to these servers on install
6
7 objtype=386
8 </$objtype/mkfile
9 p=9
10
11 # must match mem.h
12 APBOOTSTRAP=0xF0003000
13 KTZERO=0xF0100020
14
15 DEVS=`{rc ../port/mkdevlist $CONF}
16
17 PORT=\
18         alarm.$O\
19         alloc.$O\
20         allocb.$O\
21         auth.$O\
22         cache.$O\
23         chan.$O\
24         dev.$O\
25         edf.$O\
26         fault.$O\
27         page.$O\
28         parse.$O\
29         pgrp.$O\
30         portclock.$O\
31         print.$O\
32         proc.$O\
33         qio.$O\
34         qlock.$O\
35         rdb.$O\
36         rebootcmd.$O\
37         segment.$O\
38         swap.$O\
39         sysfile.$O\
40         sysproc.$O\
41         taslock.$O\
42         tod.$O\
43         xalloc.$O\
44         random.$O\
45
46 OBJ=\
47         l.$O\
48         plan9l.$O\
49         cga.$O\
50         i8253.$O\
51         i8259.$O\
52         main.$O\
53         memory.$O\
54         mmu.$O\
55         syscallfmt.$O\
56         trap.$O\
57         $CONF.root.$O\
58         $CONF.rootc.$O\
59         $DEVS\
60         $PORT\
61
62 LIB=\
63         /$objtype/lib/libmemlayer.a\
64         /$objtype/lib/libmemdraw.a\
65         /$objtype/lib/libdraw.a\
66         /$objtype/lib/libip.a\
67         /$objtype/lib/libc.a\
68         /$objtype/lib/libsec.a\
69         /$objtype/lib/libmp.a\
70         /$objtype/lib/libfis.a\
71         /$objtype/lib/libaml.a\
72
73 ETHER=`{echo devether.c ether*.c | sed 's/\.c/.'$O'/g'}
74 VGA=`{echo devvga.c screen.c vga*.c | sed 's/\.c/.'$O'/g'}
75 SDEV=`{echo devsd.c sd*.c | sed 's/\.c/.'$O'/g'}
76
77 $p$CONF:        $CONF.c $OBJ $LIB
78         $CC $CFLAGS '-DKERNDATE='`{date -n} $CONF.c
79         $LD -o $target -T$KTZERO -l $OBJ $CONF.$O $LIB
80         size $target
81
82 # don't strip the gzipped kernels -- too frustrating when that's all you have!
83 $p%.gz:D:       $p%
84         gzip -9 <$p$stem >$p$stem.gz
85
86
87 # pcflop and pccd need all the space they can get
88 9pcflop.gz:D: 9pcflop
89         strip -o /fd/1 9pcflop | gzip -9 >9pcflop.gz
90
91 9pccd.gz:D: 9pccd
92         strip -o /fd/1 9pccd | gzip -9 >9pccd.gz
93
94
95 install:V:      $p$CONF
96         cp $p$CONF /$objtype/
97         for(i in $EXTRACOPIES)
98                 import $i / /n/$i && cp $p$CONF $p$CONF.gz /n/$i/$objtype/
99
100 <../boot/bootmkfile
101 <../port/portmkfile
102 <|../port/mkbootrules $CONF
103
104 $ETHER:                         etherif.h ../port/netif.h
105 ether8003.$O ether8390.$O:      ether8390.h
106 $VGA mouse.$O:                  screen.h /sys/include/memdraw.h
107 devfloppy.$O:                   floppy.h
108 archmp.$O mp.$O:                apbootstrap.h
109 apic.$O archmp.$O mp.$O:        mp.h
110 $SDEV:                          ../port/sd.h
111 sd53c8xx.$O:                    sd53c8xx.i
112 sdiahci.$O:                     ahci.h
113 devaoe.$O sdaoe.$O:             ../port/aoe.h
114 main.$O:                        init.h reboot.h
115 wavelan.$O:                     wavelan.c ../pc/wavelan.c ../pc/wavelan.h
116 etherwavelan.$O:                etherwavelan.c ../pc/wavelan.h
117 devusb.$O usbuhci.$O usbohci.$O usbehci.$O: ../port/usb.h
118 trap.$O:                        /sys/include/tos.h
119 uartaxp.$O:                     uartaxp.i
120 etherm10g.$O:                   etherm10g2k.i etherm10g4k.i
121
122 init.h:D:               ../port/initcode.c init9.c
123         $CC ../port/initcode.c
124         $CC init9.c
125         $LD -l -R1 -s -o init.out init9.$O initcode.$O /386/lib/libc.a
126         {echo 'uchar initcode[]={'
127          xd -1x <init.out |
128                 sed -e 's/^[0-9a-f]+ //' -e 's/ ([0-9a-f][0-9a-f])/0x\1,/g'
129          echo '};'} > init.h
130
131 reboot.h:D:     rebootcode.s
132         $AS rebootcode.s
133         $LD -l -s -T0x11000 -R4 -o reboot.out rebootcode.$O
134         {echo 'uchar rebootcode[]={'
135          xd -1x reboot.out |
136                 sed -e '1,2d' -e 's/^[0-9a-f]+ //' -e 's/ ([0-9a-f][0-9a-f])/0x\1,/g'
137          echo '};'} > reboot.h
138
139 apbootstrap.h:  apbootstrap.s mem.h
140         $AS $prereq
141         $LD -o apbootstrap.out -T$APBOOTSTRAP -R4 -l -s apbootstrap.$O
142         {echo 'uchar apbootstrap[]={'
143          xd -1x apbootstrap.out |
144                 sed -e '1,2d' -e 's/^[0-9a-f]+ //' -e 's/ ([0-9a-f][0-9a-f])/0x\1,/g'
145          echo '};'} > $target
146
147 sd53c8xx.i:     sd53c8xx.n
148         aux/na $prereq > $target
149
150 uartaxp.i:      a100p.cp
151         {echo 'static uchar uartaxpcp[] = {'
152          xd -1x $prereq |
153                 sed -e 's/^[0-9a-f]+ //' -e '/^$/d' -e 's/ ([0-9a-f][0-9a-f])/0x\1,/g'
154          echo '};'
155         } > $target
156
157 etherm10g%.i:   etherm10g%.fw
158         {echo 'static char fw'^$stem^'[] = {'
159          xd -1x $prereq |
160                 sed -e 's/^[0-9a-f]+ //' -e '/^$/d' -e 's/ ([0-9a-f][0-9a-f])/0x\1,/g'
161          echo '};'
162         } > $target
163
164 acid:V:
165         8c -a -w -I. i8253.c>acid
166
167 %.checkether:VQ:
168         for (i in ether*.c){
169                 x=`{echo $i | sed 's/\.c//'}
170                 if(! ~ $x ether8390 && ! grep -s '^     '^$x^'([        ]|$)' $stem)
171                         echo $x not included in $stem
172         }
173         exit 0
174
175 %.checkvga:VQ:
176         for (i in vga*.c){
177                 x=`{echo $i | sed 's/\.c//'}
178                 if(! ~ $x vga vgax vgasavage && ! grep -s '^    '^$x^'([        ]|$)' $stem)
179                         echo $x not included in $stem
180         }
181         exit 0
182
183 checkdist:VQ:
184         for(i in pcdisk pcflop)
185         for(j in checkvga checkether)
186                 mk $i.$j
187
188 %.clean:V:
189         rm -f $stem.c [9bz]$stem [9bz]$stem.gz boot$stem.* reboot.h apbootstrap.h init.h