From c226266988d37950b6e0ca0b967fa30fd43b714c Mon Sep 17 00:00:00 2001 From: Philip Balister Date: Tue, 2 Oct 2007 19:35:45 +0000 Subject: wifistix-modules : Fix quoting in EXTRA_OEMAKE. --- packages/wifistix/wifistix-modules_5.0.16.p0.bb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/wifistix/wifistix-modules_5.0.16.p0.bb b/packages/wifistix/wifistix-modules_5.0.16.p0.bb index 2682ae6cbc..923f24e27a 100644 --- a/packages/wifistix/wifistix-modules_5.0.16.p0.bb +++ b/packages/wifistix/wifistix-modules_5.0.16.p0.bb @@ -25,10 +25,10 @@ S = "${WORKDIR}/src_cf8385" inherit module-base -EXTRA_OEMAKE = "CONFIG_GUMSTIX=y CONFIG_DEBUG=n KVER=2.6 \ - KERNELDIR=${KERNEL_SOURCE} ARCH=${TARGET_ARCH} \ - CC=${KERNEL_CC} EXTRA_CFLAGS=${CFLAGS} \ - INSTALL_MOD_PATH="${D}" +EXTRA_OEMAKE = 'CONFIG_GUMSTIX=y CONFIG_DEBUG=n KVER=2.6 \ + KERNELDIR="${KERNEL_SOURCE}" ARCH="${TARGET_ARCH}" \ + CC="${KERNEL_CC}" EXTRA_CFLAGS="${CFLAGS}" \ + INSTALL_MOD_PATH="${D}"' do_compile() { unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS -- cgit v1.2.3 From b122a0a61c4045fa1cffcf5ba8ef868bd453ec5e Mon Sep 17 00:00:00 2001 From: Philip Balister Date: Tue, 2 Oct 2007 20:15:53 +0000 Subject: wifistix : Change wifistix wireless device name from mwlan to wlan. --- packages/wifistix/wifistix-modules/marvell-devicename.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wifistix/wifistix-modules/marvell-devicename.patch b/packages/wifistix/wifistix-modules/marvell-devicename.patch index 4846b0947a..62ebe89883 100644 --- a/packages/wifistix/wifistix-modules/marvell-devicename.patch +++ b/packages/wifistix/wifistix-modules/marvell-devicename.patch @@ -5,7 +5,7 @@ if (!(dev = init_etherdev(dev, sizeof(wlan_private)))) { #else - if (!(dev = alloc_etherdev(sizeof(wlan_private)))) { -+ if (!(dev = alloc_netdev(sizeof(wlan_private), "mwlan%d", ether_setup))) { ++ if (!(dev = alloc_netdev(sizeof(wlan_private), "wlan%d", ether_setup))) { #endif PRINTM(MSG, "Init ethernet device failed!\n"); return NULL; -- cgit v1.2.3 From 06678f4cbb4978d53603b1b9f86e9862a2b2ce28 Mon Sep 17 00:00:00 2001 From: Philip Balister Date: Tue, 2 Oct 2007 20:18:16 +0000 Subject: wifistix : Update conf file with new device name. --- packages/wifistix/wifistix-modules/wifistix.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wifistix/wifistix-modules/wifistix.conf b/packages/wifistix/wifistix-modules/wifistix.conf index b232463975..117d8a2281 100644 --- a/packages/wifistix/wifistix-modules/wifistix.conf +++ b/packages/wifistix/wifistix-modules/wifistix.conf @@ -1,4 +1,4 @@ install pcmcia /sbin/modprobe --ignore-install pcmcia && modprobe pxa2xx-cs -alias mwlan0 mcf25 +alias wlan0 mcf25 -- cgit v1.2.3 From a6e66709133c6393bea82160a4a6a648e37de708 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Tue, 2 Oct 2007 21:07:52 +0000 Subject: xorg-xserver/xserver-kdrive-imageon_1.2.0.bb : enable built in fonts so it will start --- packages/xorg-xserver/xserver-kdrive-imageon_1.2.0.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/xorg-xserver/xserver-kdrive-imageon_1.2.0.bb b/packages/xorg-xserver/xserver-kdrive-imageon_1.2.0.bb index 8ed650266b..26f8666076 100644 --- a/packages/xorg-xserver/xserver-kdrive-imageon_1.2.0.bb +++ b/packages/xorg-xserver/xserver-kdrive-imageon_1.2.0.bb @@ -7,7 +7,7 @@ DEPENDS += "libxkbfile libxcalibrate" PROVIDES = "virtual/xserver" PE = "1" -PR = "r2" +PR = "r3" FILESPATH = "${FILE_DIRNAME}/xserver-kdrive-1.2.0:${FILE_DIRNAME}/xserver-kdrive" SRC_URI = "${XORG_MIRROR}/individual/xserver/xorg-server-${PV}.tar.bz2 \ @@ -20,6 +20,7 @@ SRC_URI = "${XORG_MIRROR}/individual/xserver/xorg-server-${PV}.tar.bz2 \ file://kdrive-vidmemarea.patch;patch=1 \ file://kdrive-imageon.patch;patch=1 \ file://xcalibrate_coords.patch;patch=1 \ + file://enable-builtin-fonts.patch;patch=1 \ " S = "${WORKDIR}/xorg-server-${PV}" -- cgit v1.2.3