mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
d67e3b9f25
==> Running makepkg ver: 3.4.0-chakra-0.4 ==> Making package: broadcom-wl-lts 5.100.82.38-2 (Wed Mar 30 20:39:01 UTC 2011) ==> Checking Runtime Dependencies... ==> Checking Buildtime Dependencies... ==> Retrieving Sources... -> Found hybrid-portsrc_x86_32-v5_100_82_38.tar.gz -> Found license.patch -> Found semaphore.patch -> Found mutex-sema.patch ==> Validating source files with sha1sums... hybrid-portsrc_x86_32-v5_100_82_38.tar.gz ... Passed license.patch ... Passed semaphore.patch ... Passed mutex-sema.patch ... Passed ==> Extracting Sources... -> Extracting hybrid-portsrc_x86_32-v5_100_82_38.tar.gz with bsdtar ==> Removing existing pkg/ directory... ==> Starting build()... patching file src/wl/sys/wl_linux.c patching file src/wl/sys/wl_iw.h patching file src/wl/sys/wl_linux.c Hunk #1 succeeded at 483 (offset 1 line). make: Entering directory /usr/src/linux-2.6.35-CHAKRA-LTS' ==> Entering fakeroot environment... ==> Debug: sourcing ../_buildscripts/user.conf ==> Starting package()... ==> Tidying install... -> Removing doc files... -> Purging other files... -> Compressing man and info pages... -> Stripping unneeded symbols from binaries and libraries... ==> Creating package... -> Generating .PKGINFO file... -> Adding install script... -> Compressing package... ==> Signing package... -> Created signature file /home/phil/core-testing/_repo/local/broadcom-wl-lts-5.100.82.38-2-i686.pkg.tar.xz.sig. ==> Leaving fakeroot environment. ==> Finished making: broadcom-wl-lts 5.100.82.38-2 (Wed Mar 30 20:39:11 UTC 2011)
16 lines
421 B
Diff
16 lines
421 B
Diff
--- wl/src/wl/sys/wl_linux.c 2010-12-15 03:01:09.000000000 +0100
|
|
+++ temp/src/wl/sys/wl_linux.c 2011-03-04 11:02:12.754753700 +0100
|
|
@@ -482,7 +482,11 @@
|
|
#ifdef WL_ALL_PASSIVE
|
|
spin_lock_init(&wl->txq_lock);
|
|
#endif
|
|
- init_MUTEX(&wl->sem);
|
|
+ #ifndef init_MUTEX
|
|
+ sema_init(&wl->sem,1);
|
|
+ #else
|
|
+ init_MUTEX(&wl->sem);
|
|
+ #endif
|
|
}
|
|
|
|
if (!(wl->wlc = wlc_attach((void *) wl, vendor, device, unit, wl->piomode,
|