Updated to latest memflow/next

pull/7/head
ko1N 3 years ago
parent f0c992abc4
commit 2848cd1d0e

@ -48,7 +48,6 @@ Remarks: The `install.sh` script does currently not place the `leechcore_ft601_d
### Building the stand-alone connector for dynamic loading
The stand-alone connector of this library is feature-gated behind the `inventory` feature.
To compile a dynamic library for use with the connector inventory use the following command:
```

@ -8,7 +8,7 @@ if [ ! -z "$1" ] && [ $1 = "--system" ]; then
if [[ ! -d /usr/lib/memflow ]]; then
sudo mkdir /usr/lib/memflow
fi
sudo cp target/release/libmemflow_pcileech.so /usr/lib/memflow
sudo cp target/release/libmemflow_pcileech.so /usr/lib/memflow/libmemflow_pcileech.7.so
fi
# install connector in user dir
@ -16,4 +16,4 @@ echo "installing connector for user in ~/.local/lib/memflow"
if [[ ! -d ~/.local/lib/memflow ]]; then
mkdir -p ~/.local/lib/memflow
fi
cp target/release/libmemflow_pcileech.so ~/.local/lib/memflow
cp target/release/libmemflow_pcileech.so ~/.local/lib/memflow/libmemflow_pcileech.7.so

@ -25,10 +25,6 @@ clap = "2.33"
simple_logger = "1.0"
memflow-win32 = { git = "https://github.com/memflow/memflow-win32", branch = "main" }
[features]
default = []
inventory = []
[[example]]
name = "read_phys"
path = "examples/read_phys.rs"

@ -115,7 +115,6 @@ struct WriteGap {
in_end: usize,
}
// TODO: handle mem_map
impl PhysicalMemory for PciLeech {
fn phys_read_raw_iter<'a>(
&mut self,

Loading…
Cancel
Save