From: Denis Pynkin <d.pynkin@sam-solutions.net>
To: ALT Linux Sisyphus discussion list <sisyphus@lists.altlinux.org>
Subject: Re: [sisyphus] Настройка xorg.conf в LiveCD
Date: Mon, 30 Jan 2006 21:05:22 +0200
Message-ID: <200601302105.22261.d.pynkin@sam-solutions.net> (raw)
In-Reply-To: <200601302038.59080.pv@altlinux.ru>
[-- Attachment #1: Type: text/plain, Size: 1297 bytes --]
В сообщении от 30 января 2006 19:38 Pavel Vainerman написал(a):
> > Продолжаю пытаться создать LiveCD. Уже образ создается, с него нормально
> > загружается система. Но конфиг для иксов пустой. Подскажите, кто
> > отвечает за его автоматическое генерирование и по каким правилам он
> > генерится?
> Если я правильно ошибаюсь, то сервис hardware.
> А он уже вызывает x11createconfig...
у него же присутствует глюк (а может фича ? ;-) - на некоторых машинах
надеется на то, что по части разрешения монитор и видимокарта между собой
договорятся - не добавляет поле "Modes". Только работает не всегда, например
у меня встроеная ati (модель могу попозже глянуть если надо) и монитор AOC
15" не "договариваются". Соответственно видимокарта выставляет максимальное
поддерживаемое разрешение, которое на мониторе невозможно отобразить. Такое
поведение наблюдал еще на несколькох конфигурациях.
Поскольку мне на LiveCD разрешение выше, чем 1024x768 не надо - патчу скрипт
hardware "под себя" (еще включает переключение ввода по ctrl-shift, чтоб не
настраивать через пользовательские проги) в момент postinstall'а.
На всякий случай приаттачу - размер маленький, а вдруг кому понадобится ;-)
hardware - закинуть в profile/postinstall/setup.d/
hardware.patch - в profile/patches/
--
WBR, d4s
[-- Attachment #2: hardware --]
[-- Type: text/plain, Size: 64 bytes --]
patch $ROOT/etc/init.d/hardware $PROFILE/patches/hardware.patch
[-- Attachment #3: hardware.patch --]
[-- Type: text/x-diff, Size: 1220 bytes --]
--- hardware.orig 2005-08-17 16:54:16 +0300
+++ hardware 2005-11-09 23:07:23 +0200
@@ -15,14 +15,31 @@ LOCKFILE=/var/lock/subsys/x11createconfi
RETVAL=0
start() {
+
if [ ! -f /etc/X11/xorg.conf ];then
local STRING="Setting up Xorg ..."
echo -n "$STRING "
/usr/bin/x11createconfig >/etc/X11/xorg.conf.auto
local rc=$?
- [ $rc -eq 0 ] && success "$STRING" || failure "$STRING"
+ if [ $rc -eq 0 ]
+ then
+ success "$STRING"
+ echo test
+ /usr/bin/x11createconfig | grep "Modes" >/dev/null 2>&1
+ if [ "$?" == "1" ]
+ then
+ local MODES="\\\"1024x768\\\" \\\"800x600\\\" \\\"640x480\\\""
+ x11createconfig | sed s/.*"Subsection \"Display\""\$/\&\\\n\\\t\\\t"Modes $MODES"/g > /etc/X11/xorg.conf.auto
+ fi
+ else
+ failure "$STRING"
+ fi
echo
- ln -s xorg.conf.auto /etc/X11/xorg.conf
+ cat /etc/X11/xorg.conf.auto |sed s/.*"Identifier \"Keyboard1\""/\&\
+\\\n\\\t\\\tOption\ \"XkbLayout\"\ \"us,ru\"\
+\\\n\\\t\\\tOption\ \"XkbVariant\"\ \"winkeys\"\
+\\\n\\\t\\\tOption\ \"XkbOptions\"\ \"grp:alt_shift_toggle,grp_led:scroll\"\
+/ > /etc/X11/xorg.conf
touch $LOCKFILE
fi
[ -x "$SETGL" ] && $SETGL ||:
next prev parent reply other threads:[~2006-01-30 19:05 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-01-30 13:35 Slava Dubrovskiy
2006-01-30 17:38 ` Pavel Vainerman
2006-01-30 19:05 ` Denis Pynkin [this message]
2006-01-31 6:16 ` Eugene Ostapets
2006-01-31 14:34 ` [sisyphus] " Michael Shigorin
2006-01-31 16:08 ` Andrey Brindeew
2006-01-31 16:54 ` Igor Zubkov
2006-01-31 15:57 ` Eugene Ostapets
2006-01-31 16:10 ` Led
2006-02-02 16:18 ` Michael Shigorin
2006-02-02 16:30 ` Led
2006-02-02 17:45 ` Michael Shigorin
2006-02-02 18:25 ` Led
2006-02-02 20:19 ` [sisyphus] [JT] " Michael Shigorin
2006-02-02 19:34 ` [sisyphus] " Sergey
2006-01-31 17:27 ` [sisyphus] Re: Настройка xorg.conf в LiveCD [JT] Igor Zubkov
2006-02-02 6:42 ` [sisyphus] " Anton Farygin
2006-02-02 16:19 ` [sisyphus] " Michael Shigorin
2006-02-03 7:25 ` Anton Farygin
2006-02-02 6:42 ` [sisyphus] Re: Re: Re: Настройка xorg.conf в LiveCD Anton Farygin
2006-02-02 6:41 ` [sisyphus] " Anton Farygin
2006-02-03 10:42 ` Denis Pynkin
2006-01-31 7:38 ` [sisyphus] " Slava Dubrovskiy
2006-02-01 11:39 ` Slava Dubrovskiy
2006-02-02 6:39 ` [sisyphus] " Anton Farygin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200601302105.22261.d.pynkin@sam-solutions.net \
--to=d.pynkin@sam-solutions.net \
--cc=sisyphus@lists.altlinux.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
ALT Linux Sisyphus discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
public-inbox-index sisyphus
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.sisyphus
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git