blob: 9f3c5ada39193b4d26338da807e8dfd59bc78cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Index: gpe-bootsplash-1.14/gpe-bootsplash.init
===================================================================
--- gpe-bootsplash-1.14.orig/gpe-bootsplash.init 2004-11-19 00:32:17.000000000 +0000
+++ gpe-bootsplash-1.14/gpe-bootsplash.init 2005-04-18 20:30:44.094001424 +0000
@@ -17,7 +17,13 @@
"HP IPAQ H3800")
ARGS="--force-portrait" ;;
"SHARP SHEPHERD" | "SHARP HUSKY" | "SHARP CORGI")
- ARGS="--force-landscape --flip" ;;
+ case `uname -r` in
+ 2.4*)
+ ARGS="--force-landscape --flip" ;;
+ *)
+ ARGS="--force-landscape" ;;
+ esac
+ ;;
"HP IPAQ H5400" | "HP IPAQ H2200" )
;;
esac
|