blob: 5447273a687f4e13b63b4be8e5ea3097c30087f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
do_install_prepend_qemux86-64_anaconda () {
if test -s ${WORKDIR}/xorg.conf; then
sed -i 's/Modes *"640x480"/Modes "1024x768"/g' ${WORKDIR}/xorg.conf
fi
}
do_install_prepend_qemux86_anaconda () {
if test -s ${WORKDIR}/xorg.conf; then
sed -i 's/Modes *"640x480"/Modes "1024x768"/g' ${WORKDIR}/xorg.conf
fi
}
|