freewrt_2_0
|
Last change
on this file since 621d5d2 was 155f9511, checked in by Ralph Paßgang <tha@…>, 18 years ago |
|
Madwifi (fixing bug: #155):
- downgraded to 0.9.2.1, because in 0.9.3.x the madwifi kernel module
oopses in monitor mode.
- applied debian's security fixed for 0.9.2.1, because every
unpatched version before 0.9.3.1 is vulnerable to three knows security
issues (see madwifi.org).
- converted four manual patches to the freewrt patch format
- thx to shorty for sending a one-liner fix in the Makefile for 0.9.2.1
Aiccu (fixing a bug reported via the xen-users ml by Frank Matthiess):
- merged fix from trunk rev #2881 for fixing a bug regarding a broken
IP Header in the aiccu packets.
Broadcom-wl-util (fixing bug: #334):
- qouted the wpa password in the if-<pre>up.d scripts.
hopefully this fixes this bug. Until now I only checked that it
doesn't brake something that was already working before.
Freeradius (fixing bug: #321):
- the init.d script now exports the correct library path before radiusd
is started. otherwise the daemon fails in certain setups because some
libraries cannot be found. thx to tg for this fix.
License:
git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@2951 afb5a338-a214-0410-bd46-81f09a774fd1
|
-
Property mode
set to
100644
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | # $FreeWRT$
|
|---|
| 2 | #-
|
|---|
| 3 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 4 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 5 | # or at http://www.freewrt.org/licence for details.
|
|---|
| 6 |
|
|---|
| 7 | include $(TOPDIR)/rules.mk
|
|---|
| 8 |
|
|---|
| 9 | PKG_NAME:= aiccu
|
|---|
| 10 | PKG_VERSION:= 20070115
|
|---|
| 11 | PKG_RELEASE:= 3
|
|---|
| 12 | PKG_MD5SUM:= c9bcc83644ed788e22a7c3f3d4021350
|
|---|
| 13 | PKG_INIT:= 60
|
|---|
| 14 |
|
|---|
| 15 | PKG_SOURCE_URL:= http://www.sixxs.net/archive/sixxs/aiccu/unix
|
|---|
| 16 | PKG_SOURCE:= $(PKG_NAME)_$(PKG_VERSION).tar.gz
|
|---|
| 17 |
|
|---|
| 18 | WRKSRC= ${WRKDIR}/$(PKG_NAME)
|
|---|
| 19 |
|
|---|
| 20 | include $(TOPDIR)/mk/package.mk
|
|---|
| 21 |
|
|---|
| 22 | $(eval $(call PKG_template,AICCU,aiccu,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|---|
| 23 |
|
|---|
| 24 | $(WRKBUILD)/.configured:
|
|---|
| 25 | touch $@
|
|---|
| 26 |
|
|---|
| 27 | $(WRKBUILD)/.built:
|
|---|
| 28 | $(MAKE) -C $(WRKBUILD) \
|
|---|
| 29 | CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" \
|
|---|
| 30 | CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -D_REENTRANT -DAICCU_CONSOLE -D_LINUX -DHAS_IFHEAD -DAICCU_TYPE='\"linux\"'" \
|
|---|
| 31 | DEBUG=0
|
|---|
| 32 | touch $@
|
|---|
| 33 |
|
|---|
| 34 | $(IPKG_AICCU):
|
|---|
| 35 | $(INSTALL_DIR) $(IDIR_AICCU)/usr/sbin
|
|---|
| 36 | $(INSTALL_DIR) $(IDIR_AICCU)/etc/init.d
|
|---|
| 37 | $(INSTALL_BIN) $(WRKBUILD)/unix-console/$(PKG_NAME) $(IDIR_AICCU)/usr/sbin/
|
|---|
| 38 | $(INSTALL_BIN) ./files/aiccu.init \
|
|---|
| 39 | $(IDIR_AICCU)/etc/init.d/S$(PKG_INIT)aiccu
|
|---|
| 40 | $(INSTALL_DATA) $(WRKBUILD)/doc/aiccu.conf $(IDIR_AICCU)/etc/aiccu.conf
|
|---|
| 41 | $(RSTRIP) $(IDIR_AICCU)
|
|---|
| 42 | $(IPKG_BUILD) $(IDIR_AICCU) $(PACKAGE_DIR)
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.