From: Ben Pfaff Date: Wed, 29 Sep 2004 15:41:01 +0000 (+0000) Subject: Move TODO. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10af62742561916b6fe064ac50e10fec78b9a05c;p=pintos-anon Move TODO. --- diff --git a/src/TODO b/src/TODO deleted file mode 100644 index 6392e29..0000000 --- a/src/TODO +++ /dev/null @@ -1,42 +0,0 @@ -* Write "tour". - -* Always flush TLB. - ----------------------------------------------------------------------- - -* Cygwin support: - - PE linker scripts? Doesn't seem to support ELF ones. - - .S files need _ prefixes on symbols. - -* Filesystem dumps should include filehdrs? - -* Cross-compile notes: - -cd /tmp -bzcat ~/binutils-2.15.tar.bz2 | tar x -tar xzf newlib-1.12.0.tar.gz -tar xzf gcc-core-3.3.2.tar.gz -tar xzf gdb-6.2.1.tar.gz - -PATH=$PATH:/usr/class/cs140/i386/bin - -cd /tmp/binutils-2.15 -mkdir i386 -cd i386 -../configure --target=i386-elf --prefix=/usr/class/cs140/i386 -make LDFLAGS=-lintl -make install - -cd /tmp/gcc-core-3.3.2.tar.gz -mkdir i386 -cd i386 -../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 -make -make install - -cd /tmp/gdb-6.2.1 -mkdir i386 -cd i386 -../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui -make -make install diff --git a/src/misc/TODO b/src/misc/TODO new file mode 100644 index 0000000..c6125d4 --- /dev/null +++ b/src/misc/TODO @@ -0,0 +1,36 @@ +* Cygwin support: + - PE linker scripts? Doesn't seem to support ELF ones. + - .S files need _ prefixes on symbols. + +* Filesystem dumps should include filehdrs? + +* Cross-compile notes: + +cd /tmp +bzcat ~/binutils-2.15.tar.bz2 | tar x +tar xzf newlib-1.12.0.tar.gz +tar xzf gcc-core-3.3.2.tar.gz +tar xzf gdb-6.2.1.tar.gz + +PATH=$PATH:/usr/class/cs140/i386/bin + +cd /tmp/binutils-2.15 +mkdir i386 +cd i386 +../configure --target=i386-elf --prefix=/usr/class/cs140/i386 +make LDFLAGS=-lintl +make install + +cd /tmp/gcc-core-3.3.2.tar.gz +mkdir i386 +cd i386 +../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 +make +make install + +cd /tmp/gdb-6.2.1 +mkdir i386 +cd i386 +../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui +make +make install