2003-01-19 08:49:24 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# hostap
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
HOSTAP_SOURCE_URL=http://hostap.epitest.fi/cgi-bin/viewcvs.cgi/hostap/hostap.tar.gz?tarball=1
|
|
|
|
HOSTAP_SOURCE=hostap.tar.gz
|
|
|
|
HOSTAP_BUILD_DIR=$(BUILD_DIR)/hostap-snapshot
|
2003-01-20 08:02:31 +01:00
|
|
|
HOSTAP_TARGET_MODULE_DIR=$(TARGET_DIR)/lib/modules/$(LINUX_VERSION)/hostap
|
2003-01-19 08:49:24 +01:00
|
|
|
|
|
|
|
$(DL_DIR)/$(HOSTAP_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(HOSTAP_SOURCE_URL) -O $(DL_DIR)/$(HOSTAP_SOURCE)
|
|
|
|
|
|
|
|
hostap-source: $(DL_DIR)/$(HOSTAP_SOURCE)
|
|
|
|
|
|
|
|
$(HOSTAP_BUILD_DIR)/.unpacked: $(DL_DIR)/$(HOSTAP_SOURCE)
|
|
|
|
zcat $(DL_DIR)/$(HOSTAP_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
|
|
|
mv -f $(BUILD_DIR)/hostap $(HOSTAP_BUILD_DIR)
|
|
|
|
touch $(HOSTAP_BUILD_DIR)/.unpacked
|
|
|
|
|
|
|
|
$(HOSTAP_BUILD_DIR)/.configured: $(HOSTAP_BUILD_DIR)/.unpacked
|
2003-02-01 00:35:08 +01:00
|
|
|
perl -pi -e "s,/*.#define PRISM2_DOWNLOAD_SUPPORT.*/,#define PRISM2_DOWNLOAD_SUPPORT,g" \
|
2003-01-30 16:09:01 +01:00
|
|
|
$(HOSTAP_BUILD_DIR)/driver/modules/hostap_config.h
|
2003-01-19 08:49:24 +01:00
|
|
|
touch $(HOSTAP_BUILD_DIR)/.configured
|
|
|
|
|
|
|
|
$(HOSTAP_BUILD_DIR)/driver/modules/hostap.o: $(HOSTAP_BUILD_DIR)/.configured
|
|
|
|
$(MAKE) -C $(HOSTAP_BUILD_DIR) pccard KERNEL_PATH=$(BUILD_DIR)/linux CC=$(TARGET_CC)
|
|
|
|
$(MAKE) -C $(HOSTAP_BUILD_DIR)/utils CC=$(TARGET_CC)
|
|
|
|
$(MAKE) -C $(HOSTAP_BUILD_DIR)/hostapd CC=$(TARGET_CC)
|
2003-01-20 08:02:31 +01:00
|
|
|
touch -c $(HOSTAP_BUILD_DIR)/driver/modules/hostap.o
|
2003-01-19 08:49:24 +01:00
|
|
|
|
|
|
|
$(HOSTAP_TARGET_MODULE_DIR)/hostap.o: $(HOSTAP_BUILD_DIR)/driver/modules/hostap.o
|
|
|
|
# Make the dir
|
2003-01-20 08:02:31 +01:00
|
|
|
-rm -rf $(HOSTAP_TARGET_MODULE_DIR)
|
|
|
|
-mkdir -p $(HOSTAP_TARGET_MODULE_DIR)
|
2003-01-19 08:49:24 +01:00
|
|
|
# Copy The Module Files
|
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/driver/modules/*.o $(HOSTAP_TARGET_MODULE_DIR)/
|
2003-01-20 08:02:31 +01:00
|
|
|
# Copy the pcmcia-cs conf file
|
|
|
|
-mkdir -p $(TARGET_DIR)/etc/pcmcia
|
2003-01-19 08:49:24 +01:00
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/driver/etc/hostap_cs.conf $(TARGET_DIR)/etc/pcmcia/
|
|
|
|
# Copy The Utils
|
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/utils/hostap_crypt_conf $(TARGET_DIR)/usr/bin/
|
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/utils/hostap_diag $(TARGET_DIR)/usr/bin/
|
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/utils/prism2_param $(TARGET_DIR)/usr/bin/
|
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/utils/prism2_srec $(TARGET_DIR)/usr/bin/
|
|
|
|
# Copy hostapd
|
|
|
|
cp -af $(HOSTAP_BUILD_DIR)/hostapd/hostapd $(TARGET_DIR)/usr/sbin/
|
2003-01-20 08:02:31 +01:00
|
|
|
touch -c $(HOSTAP_TARGET_MODULE_DIR)/hostap.o
|
2003-01-19 08:49:24 +01:00
|
|
|
|
2003-01-30 16:17:44 +01:00
|
|
|
hostap: pcmcia $(HOSTAP_TARGET_MODULE_DIR)/hostap.o
|
2003-01-19 08:49:24 +01:00
|
|
|
|
|
|
|
hostap-clean:
|
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(HOSTAP_BUILD_DIR) uninstall
|
|
|
|
-$(MAKE) -C $(HOSTAP_BUILD_DIR) clean
|
|
|
|
|
|
|
|
hostap-dirclean:
|
|
|
|
rm -rf $(HOSTAP_BUILD_DIR)
|
|
|
|
|