View | Details | Raw Unified | Return to bug 417575
Collapse All | Expand All

(-)rpm/sax2.changes (+5 lines)
Lines 1-4 Link Here
1
-------------------------------------------------------------------
1
-------------------------------------------------------------------
2
Wed Jul 16 10:29:40 CEST 2008 - sndirsch@suse.de
3
4
- no longer set BusID for single card configurations (bnc #381644)
5
6
-------------------------------------------------------------------
2
Tue Jul 15 17:37:02 CEST 2008 - sndirsch@suse.de
7
Tue Jul 15 17:37:02 CEST 2008 - sndirsch@suse.de
3
8
4
- configure only primary VGA card by default, i.e. no multicard
9
- configure only primary VGA card by default, i.e. no multicard
(-)startup/sax.sh (-2 / +14 lines)
Lines 28-34 Link Here
28
FASTPATH=""
28
FASTPATH=""
29
QUICK_START=""
29
QUICK_START=""
30
GPMSTATUS=3
30
GPMSTATUS=3
31
BATCH_MODE=""
31
### no longer write BusID by default if there is only one possible
32
### primary device
33
if [ $(/usr/sbin/sysp -c | wc -l) -lt 2 ]; then 
34
	BATCH_MODE="-b nobus"
35
else
36
	BATCH_MODE=""
37
fi
32
CMD_LINE=""
38
CMD_LINE=""
33
AUTO_CONF=""
39
AUTO_CONF=""
34
LOW_RES=""
40
LOW_RES=""
Lines 284-290 Link Here
284
	shift 2 ;;                  # this resolution @ vsync
290
	shift 2 ;;                  # this resolution @ vsync
285
291
286
	-c|--chip)                  # set chip(s) to configure...
292
	-c|--chip)                  # set chip(s) to configure...
287
		CHIP="-c $2"     
293
		CHIP="-c $2"   
294
		### we still need BusID for Multicard setups
295
		if echo "$2" | grep -q ","; then
296
			if [ "$BATCH_MODE" == "-b nobus" ]; then
297
				BATCH_MODE=""
298
			fi 
299
		fi
288
	shift 2 ;;
300
	shift 2 ;;
289
301
290
	-n|--node)                  # set device node for primary mouse
302
	-n|--node)                  # set device node for primary mouse

Return to bug 417575