Call serial_flush() in power_off().
[pintos-anon] / src / TODO
1 * Get rid of names for synch primitives?  They increase the size of
2   each one by 16 bytes and are probably not that useful.
3   Alternatively make the names pointers?
4
5 * Write, test VM.
6
7 * Test list, hash ADTs.
8
9 * Compile and install gdb, dbg versions.
10   - Test gdb version.
11
12 * References/bibliography.
13   - Userprog refers to [SysV-i386].
14
15 * Write "tour".
16
17 ----------------------------------------------------------------------
18
19 * Cygwin support:
20   - PE linker scripts?  Doesn't seem to support ELF ones.
21   - .S files need _ prefixes on symbols.
22
23 * Filesystem dumps should include filehdrs?
24
25 * Cross-compile notes:
26
27 cd /tmp
28 bzcat ~/binutils-2.15.tar.bz2 | tar x
29 tar xzf newlib-1.12.0.tar.gz
30 tar xzf gcc-core-3.3.2.tar.gz
31 tar xzf gdb-6.2.1.tar.gz
32
33 PATH=$PATH:/usr/class/cs140/i386/bin
34
35 cd /tmp/binutils-2.15
36 mkdir i386
37 cd i386
38 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386
39 make LDFLAGS=-lintl
40 make install
41
42 cd /tmp/gcc-core-3.3.2.tar.gz
43 mkdir i386
44 cd i386
45 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --with-gnu-as --with-as=/usr/class/cs140/i386/bin/i386-elf-as --with-gnu-ld --with-ld=/usr/class/cs140/i386/bin/i386-elf-ld --with-headers=/tmp/newlib-1.12.0/newlib/libc/include --with-newlib
46 make
47 make install
48
49 cd /tmp/gdb-6.2.1
50 mkdir i386
51 cd i386
52 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui
53 make
54 make install