File tree 5 files changed +8
-3
lines changed
5 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Cargo places all built files here.
1
2
/target /
3
+
4
+ # Libraries should not commit their .lock files.
2
5
Cargo.lock
Original file line number Diff line number Diff line change 30
30
31
31
#![ no_std]
32
32
33
- #![ warn( missing_docs) ]
33
+ // Enable some additional warnings and lints.
34
+ #![ warn( missing_docs, unused) ]
34
35
#![ cfg_attr( feature = "cargo-clippy" , warn( clippy) ) ]
35
36
36
37
#[ macro_use]
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use core::mem;
7
7
pub struct Pointer {
8
8
reset : extern "C" fn ( this : & mut Pointer , ext_verif : bool ) -> Status ,
9
9
get_state : extern "C" fn ( this : & Pointer , state : & mut PointerState ) -> Status ,
10
- wait_for_input : usize ,
10
+ _wait_for_input : usize ,
11
11
mode : & ' static PointerMode ,
12
12
}
13
13
Original file line number Diff line number Diff line change 9
9
//!
10
10
//! [udk]: https://firmware.intel.com/develop/intel-uefi-tools-and-utilities/intel-uefi-development-kit-debugger-tool
11
11
12
+ /// The debugging support protocol allows debuggers to connect to a UEFI machine.
12
13
#[ repr( C ) ]
13
14
pub struct DebugSupport {
14
15
isa : ProcessorArch ,
Original file line number Diff line number Diff line change 3
3
Besides all the requirements for building a UEFI app, you will also need:
4
4
5
5
- [ QEMU] ( https://www.qemu.org/ ) : the most recent version of QEMU is recommended.
6
- - [ Python 3] ( https://www.python.org )
6
+ - [ Python 3] ( https://www.python.org ) : at least version 3.6 is required.
7
7
- [ OVMF] ( https://github.com/tianocore/tianocore.github.io/wiki/OVMF ) :
8
8
You need to extract ` OVMF_CODE.fd ` and ` OVMF_VARS.fd ` to the same directory as the ` build.py ` file.
9
9
Alternatively, install OVMF using your distro's package manager and change the paths in the script file.
You can’t perform that action at this time.
0 commit comments