Move pagedir stuff into userprog.
[pintos-anon] / src / TODO
1 * Write, test join.
2
3 * Write, test user programs.
4
5 * Figure out PD/PT management API.
6   - We should document what's in mmu.h.  
7   - pagedir.[ch] is undocumented.
8
9 * Write, test VM.
10
11 * Implement `jitter'.
12
13 * Test list, hash ADTs.
14
15 * Compile and install gdb, dbg versions.
16   - Test gdb version.
17
18 * Write "tour".
19
20 ----------------------------------------------------------------------
21
22 * Cygwin support:
23   - PE linker scripts?  Doesn't seem to support ELF ones.
24   - .S files need _ prefixes on symbols.
25
26 * Filesystem dumps should include filehdrs?
27
28 * Cross-compile notes:
29
30 cd /tmp
31 bzcat ~/binutils-2.15.tar.bz2 | tar x
32 tar xzf newlib-1.12.0.tar.gz
33 tar xzf gcc-core-3.3.2.tar.gz
34 tar xzf gdb-6.2.1.tar.gz
35
36 PATH=$PATH:/usr/class/cs140/i386/bin
37
38 cd /tmp/binutils-2.15
39 mkdir i386
40 cd i386
41 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386
42 make LDFLAGS=-lintl
43 make install
44
45 cd /tmp/gcc-core-3.3.2.tar.gz
46 mkdir i386
47 cd i386
48 ../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
49 make
50 make install
51
52 cd /tmp/gdb-6.2.1
53 mkdir i386
54 cd i386
55 ../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui
56 make
57 make install