if test -f $1; then
echo $1 exists, something is wrong >&2
exit 1
- else
- hack_fwmk "NONFREE_FW += $1"
+ elif test ! -f firmware/Makefile; then
+ echo firmware/Makefile does not exist, something is wrong >&2
+ exit 1
fi
+
+ sed -i "s,`echo $1 | sed s,^firmware/,,`,\$(DEBLOBBED),g" \
+ firmware/Makefile
}
function clean_fw {
dummy_blob $2
}
-function hack_fwmk {
- if test ! -f firmware/Makefile; then
- echo firmware/Makefile does not exist, something is wrong >&2
- exit 1
- fi
-
- sed -i "/^[ ]*fw-shipped-all[ ]*:=[ ]*/i\
-$1
-" firmware/Makefile
-}
-
function clean_kconfig {
#$1 = filename $2 = things to remove
echo Marking config $2 as depending on NONFREE in $1
# Identify the tarball.
sed -i "s,^EXTRAVERSION.*,&-libre$extra," Makefile
-hack_fwmk 'NONFREE_FW :='
-
#######################
# Removed ATM Drivers #
#######################
clean_file sound/isa/wavefront/yss225.c
clean_kconfig sound/isa/Kconfig 'SND_WAVEFRONT_FIRMWARE_IN_KERNEL'
-hack_fwmk 'fw-shipped-y := $(filter-out $(NONFREE_FW), $(fw-shipped-y))'
-hack_fwmk 'fw-shipped-m := $(filter-out $(NONFREE_FW), $(fw-shipped-m))'
-hack_fwmk 'fw-shipped- := $(filter-out $(NONFREE_FW), $(fw-shipped-) )'
-
exit 0