summarylogtreecommitdiffstats
path: root/ovmf.install
blob: 1ff47c6d9581bcf750437cd65365434b8ba90cd3 (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
28
29
30
31
32
post_install() {
	
	cat << EOF
    
    NOTE:
    The OVMF X64 UEFI image has been moved to /usr/share/ovmf/x64/ovmf_x64.bin
    The OVMF IA32 UEFI image has been moved to /usr/share/ovmf/x64/ovmf_ia32.bin
    
    To test OVMF X64 in QEMU (use v1.5+) run:
    
    \$ cp /usr/share/ovmf/x64/ovmf_x64.bin ~/ovmf_x64.bin
    \$ qemu-system-x86_64 -enable-kvm -net none -m 1500 -pflash ~/ovmf_x64.bin
    
    To test OVMF IA32 in QEMU (use v1.5+) run:
    
    \$ cp /usr/share/ovmf/ia32/ovmf_ia32.bin ~/ovmf_ia32.bin
    \$ qemu-system-i386 -enable-kvm -net none -m 1024 -pflash ~/ovmf_ia32.bin
    
EOF

## TODO: Split OVMF_CODE.fd and OVMF_VARS.fd usage
## http://git.qemu.org/?p=qemu.git;a=commit;h=637a5acb46b36a25b506ba6545e9a53350585b03

	
}

post_upgrade() {
	
	post_install
	
}