mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-07 15:16:09 +00:00
The driver was merged in 1999 and has only ever seen treewide cleanups since then, with no indication whatsoever that anyone has actually had access to hardware for testing the patches. >From the information in the link below, it appears that the hardware is for some leased line system in Russia that has since been discontinued, and useless without any remote end to connect to. As the driver still feels like a Linux-2.2 era artifact today, it appears that the best way forward is to just delete it. Link: https://www.tms.ru/%D0%90%D0%B4%D0%B0%D0%BF%D1%82%D0%B5%D1%80_%D0%B4%D0%BB%D1%8F_%D0%B2%D1%8B%D0%B4%D0%B5%D0%BB%D0%B5%D0%BD%D0%BD%D1%8B%D1%85_%D0%BB%D0%B8%D0%BD%D0%B8%D0%B9_Granch_SBNI12-10 Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
66 lines
1.9 KiB
Makefile
66 lines
1.9 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux network (wan) device drivers.
|
|
#
|
|
# 3 Aug 2000, Christoph Hellwig <hch@infradead.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
obj-$(CONFIG_HDLC) += hdlc.o
|
|
obj-$(CONFIG_HDLC_RAW) += hdlc_raw.o
|
|
obj-$(CONFIG_HDLC_RAW_ETH) += hdlc_raw_eth.o
|
|
obj-$(CONFIG_HDLC_CISCO) += hdlc_cisco.o
|
|
obj-$(CONFIG_HDLC_FR) += hdlc_fr.o
|
|
obj-$(CONFIG_HDLC_PPP) += hdlc_ppp.o
|
|
obj-$(CONFIG_HDLC_X25) += hdlc_x25.o
|
|
|
|
obj-$(CONFIG_HOSTESS_SV11) += z85230.o hostess_sv11.o
|
|
obj-$(CONFIG_SEALEVEL_4021) += z85230.o sealevel.o
|
|
obj-$(CONFIG_COSA) += cosa.o
|
|
obj-$(CONFIG_FARSYNC) += farsync.o
|
|
|
|
obj-$(CONFIG_LANMEDIA) += lmc/
|
|
|
|
obj-$(CONFIG_LAPBETHER) += lapbether.o
|
|
obj-$(CONFIG_N2) += n2.o
|
|
obj-$(CONFIG_C101) += c101.o
|
|
obj-$(CONFIG_WANXL) += wanxl.o
|
|
obj-$(CONFIG_PCI200SYN) += pci200syn.o
|
|
obj-$(CONFIG_PC300TOO) += pc300too.o
|
|
obj-$(CONFIG_IXP4XX_HSS) += ixp4xx_hss.o
|
|
obj-$(CONFIG_FSL_UCC_HDLC) += fsl_ucc_hdlc.o
|
|
obj-$(CONFIG_SLIC_DS26522) += slic_ds26522.o
|
|
|
|
clean-files := wanxlfw.inc
|
|
$(obj)/wanxl.o: $(obj)/wanxlfw.inc
|
|
|
|
ifeq ($(CONFIG_WANXL_BUILD_FIRMWARE),y)
|
|
ifeq ($(ARCH),m68k)
|
|
M68KCC = $(CC)
|
|
M68KLD = $(LD)
|
|
else
|
|
M68KCC = $(CROSS_COMPILE_M68K)gcc
|
|
M68KLD = $(CROSS_COMPILE_M68K)ld
|
|
endif
|
|
|
|
quiet_cmd_build_wanxlfw = BLDFW $@
|
|
cmd_build_wanxlfw = hexdump -ve '"\n" 16/1 "0x%02X,"' $< | \
|
|
sed 's/0x ,//g;1s/^/static const u8 firmware[]={/;$$s/,$$/\n};\n/' > $@
|
|
|
|
$(obj)/wanxlfw.inc: $(obj)/wanxlfw.bin FORCE
|
|
$(call if_changed,build_wanxlfw)
|
|
|
|
quiet_cmd_m68kld_bin_o = M68KLD $@
|
|
cmd_m68kld_bin_o = $(M68KLD) --oformat binary -Ttext 0x1000 $< -o $@
|
|
|
|
$(obj)/wanxlfw.bin: $(obj)/wanxlfw.o FORCE
|
|
$(call if_changed,m68kld_bin_o)
|
|
|
|
quiet_cmd_m68kas_o_S = M68KAS $@
|
|
cmd_m68kas_o_S = $(M68KCC) -D__ASSEMBLY__ -Wp,-MD,$(depfile) -I$(srctree)/include/uapi -c -o $@ $<
|
|
|
|
$(obj)/wanxlfw.o: $(src)/wanxlfw.S FORCE
|
|
$(call if_changed_dep,m68kas_o_S)
|
|
endif
|
|
targets += wanxlfw.inc wanxlfw.bin wanxlfw.o
|