aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Li <li.davidm96@gmail.com>2016-01-05 11:02:05 -0700
committerDavid Li <li.davidm96@gmail.com>2016-01-05 11:02:05 -0700
commite6d2693a836788894373af1b35ed678b3561f6ac (patch)
tree9cac4cfce0851a984f1f8b8b774343b99c917a9f
parent4dbf2562e1fc731d193d7df9a117a41c38b49b00 (diff)
Upload elfloader separately
-rw-r--r--src/rust-elfloader/Cargo.toml6
-rw-r--r--src/rust-elfloader/README.md9
2 files changed, 10 insertions, 5 deletions
diff --git a/src/rust-elfloader/Cargo.toml b/src/rust-elfloader/Cargo.toml
index 462a580..35f4f9d 100644
--- a/src/rust-elfloader/Cargo.toml
+++ b/src/rust-elfloader/Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "elfloader32"
version = "0.0.3"
-authors = ["Gerd Zellweger <mail@gerdzellweger.com>", "Christopher Cole <chris.cole.09@gmail.com>", "John Kåre Alsaker <john.kare.alsaker@gmail.com>"]
-repository = "https://github.com/gz/rust-elfloader"
+authors = ["Gerd Zellweger <mail@gerdzellweger.com>", "Christopher Cole <chris.cole.09@gmail.com>", "John Kåre Alsaker <john.kare.alsaker@gmail.com>", "David Li <li.davidm96@gmail.com>"]
+repository = "https://git.lidavidm.me/rustv"
license = "Apache-2.0"
-description = "A rust library to load ELF files."
+description = "A rust library to load ELF files, modified to handle 32-bit ELF."
keywords = ["elf", "x86", "os"]
readme = "README.md"
diff --git a/src/rust-elfloader/README.md b/src/rust-elfloader/README.md
index c49f38c..9d3acf6 100644
--- a/src/rust-elfloader/README.md
+++ b/src/rust-elfloader/README.md
@@ -6,6 +6,11 @@ A library to load and relocate ELF files in memory.
This library depends only on libcore so it can be used in kernel level code,
for example to load user-space programs.
-This library reuses a modified version of the types.rs
+This library reuses a modified version of the types.rs
file from [rust-elf](https://github.com/cole14/rust-elf)
-by Christopher Cole. \ No newline at end of file
+by Christopher Cole.
+
+This library was modified to handle 32-bit ELF files instead. You
+probably want the original
+[rust-elfloader](https://github.com/gz/rust-elfloader), if you're
+looking at this. \ No newline at end of file