rtl8188eu: Update README.md and Makefile

I will no longer support the download of zip versions for the source.
whenever there is any change in the source, the user must redo the
entire download and unpacking. This sequence is a lot more complicated
that a simple 'git pull', thus the user skips that step and I have to
deal with complaints about a problem I have already fixed. Now, the
make operation will fail with an error.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2019-11-04 15:47:42 -06:00
parent 49e792766b
commit 8a85ada630
2 changed files with 24 additions and 1 deletions

View file

@ -27,6 +27,7 @@ CONFIG_DRVEXT_MODULE = n
export TopDIR ?= $(shell pwd)
MSG="Directory .git does not exist indicating that you downloaded the source as a zip file. Only the 'git clone' method is now supported."
OUTSRC_FILES := hal/odm_debug.o \
hal/odm_interface.o\
@ -147,7 +148,10 @@ else
export CONFIG_RTL8188EU = m
all: modules
all: test modules
test:
@if [ ! -e ./.git ] ; then echo $(MSG); exit 1; fi;
modules:
$(MAKE) ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C $(KERNEL_SRC) M=$(shell pwd) modules