summarylogtreecommitdiffstats
path: root/ovmf.install
blob: 3d98e218eb343f1990c56c0552033dd683f18124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
post_install() {
	
	cat << EOF
    
    NOTE: The OVMF X64 image has been moved to /usr/share/ovmf/x86_64/ovmf.bin
    
    OVMF now support NV VAR storage within the OVMF image if QEMU flash (-pflash) is supported
    This requires write access by QEMU to the OVMF image
    For more info see http://sourceforge.net/p/tianocore/edk2/ci/e58e5bcd23badac8ef91d3bcc73baac3ca27e2ae/
    
    To test OVMF X64 in QEMU (use >= v1.5), run:
    
    \$ cp /usr/share/ovmf/x86_64/ovmf.bin ~/ovmf.bin
    \$ qemu-system-x86_64 -enable-kvm -net none -m 1024 -pflash ~/ovmf.bin
    
    NOTE: The command is not -bios , it is -pflash now
    
EOF
	
}

post_upgrade() {
	
	post_install
	
}