-Replaced ffmpeg-svn by ffmpeg-git
authorgobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Thu, 10 Mar 2011 22:10:59 +0000 (22:10 +0000)
committergobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Thu, 10 Mar 2011 22:10:59 +0000 (22:10 +0000)
-Now download nouveau video driver only if using it
-Now using nouveau linux kernel for amd64 system
-Modified main function to include packages list before sysinfos, so that users can override some package versions if needed.

config/packages-list
config/sysinfos.amd64
functions/main
stage4/packages-update

index b1a89f1..0bbbc64 100644 (file)
@@ -47,6 +47,7 @@ CURL="curl-7.19.7"
 CVS="cvs-1.11.23"
 
 DBUS="dbus-1.2.24"
+# dbus-glib-0.92 has some compilation problems
 DBUS_GLIB="dbus-glib-0.88"
 DDCLIENT="ddclient-3.6.7"
 DEJAGNU="dejagnu-1.4.4"
@@ -78,7 +79,7 @@ EXPAT="expat-2.0.1"
 
 FCRON="fcron-3.0.6"
 FETCHMAIL="fetchmail-6.3.12"
-FFMPEG="ffmpeg-svn-20539"
+FFMPEG="ffmpeg-git-20110310"
 FIREFOX="firefox-3.6.13"
 FILE_PKG="file-5.04"
 FINDUTILS="findutils-4.4.2"
index 25bebd5..ff6b1ed 100644 (file)
@@ -5,7 +5,7 @@
 
 INST_TYPE="workstation"
 HVL_TARGET="x86_64"
-MAKEJOBS=4
+MAKEJOBS=2
 
 # Destination path where to install new Linux-HV system. This is usually where
 # you have mounted your new LFS partition, but it can also be any directory.
@@ -35,3 +35,6 @@ BOOTPROTO[0]="dhcp"
 
 # Samba support
 USE_SAMBA="no"
+
+# Override some packages
+KERNEL="linux-2.6-nouveau-git-20110310"
index c3c14e5..ae0d163 100644 (file)
@@ -23,6 +23,10 @@ hvtrap_int()
     exit 1
 }
 
+# Load list of packages and versions.
+# They may be overridden in sysinfos.
+source ../config/packages-list
+
 # Load default values
 source ../config/sysinfos.default
 
@@ -46,9 +50,6 @@ source ./stage.def
 # Load functions
 source ../functions/fpkg
 
-# Load list of packages and versions
-source ../config/packages-list
-
 # Constants for return codes
 EXIT_SUCCESS=0
 EXIT_WARNING=1
index 65b82de..e18e1c9 100755 (executable)
@@ -91,7 +91,9 @@ fpkg -m fd -o "hal" ${POLICYKIT}
 fpkg -m fd ${HAL}
 fpkg -m fd -o "hal" ${HAL_INFO}
 
-fpkg -m hv ${XORG_VIDEO_NOUVEAU}
+if [ "x${XORG_VIDEO_DRIVER}" = "xnouveau" ]; then
+    fpkg -m hv ${XORG_VIDEO_NOUVEAU}
+fi
 fpkg -m xorg -s xserver ${XORG_SERVER}
 fpkg -m xorg -s app ${XDM}