blob: d62f8cc03232e92ddc2cf498bc7fee96abebd18d (
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
}
|