aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules/lib.mk
Commit message (Expand)AuthorAgeFilesLines
* kernel: fix lib-xor for ARM64Tim Harvey2020-03-081-2/+2
* kernel: Adapt moved crodic.ko moduleHauke Mehrtens2020-02-281-1/+2
* kernel: remove obsolete kernel version switchesAdrian Schmutzler2020-01-121-8/+8
* kernel: Remove support for kernel 3.18Hauke Mehrtens2019-05-031-2/+2
* kernel: extract asn1_decoder.koHauke Mehrtens2018-12-151-0/+11
* kernel: add missing dependency to kmod-crypto-acompressHauke Mehrtens2018-12-151-2/+2
* kernel: add missing dependencies to kmod-crypto-acompressHauke Mehrtens2017-12-161-0/+2
* kernel: add kmod-lib-zstdHauke Mehrtens2017-12-161-0/+22
* kernel: fix lzo and lz4 modulesJohn Crispin2017-11-201-2/+6
* kernel: split kmod-lib-zlib into two packages to keep it in sync with kernel ...Felix Fietkau2016-12-261-9/+17
* kernel: mark compression modules as hiddden to obsolete the compressor kconfi...Felix Fietkau2016-08-041-0/+3
* kernel: remove kernel module checks/dependencies for 3.14Felix Fietkau2015-04-111-1/+0
* kernel: drop obsolete linux 3.10 related dependencies/checksFelix Fietkau2015-04-101-1/+1
* kernel: add crc16 as boot module, it is required by ext4Felix Fietkau2015-03-291-1/+1
* kernel: remove obsolete kernel version dependenciesFelix Fietkau2015-03-191-1/+1
* modules: add lz4 compression supportJohn Crispin2015-01-281-0/+20
* kernel: fix dependency to xor-neon.koHauke Mehrtens2014-05-021-0/+7
* kernel: dont rely on library modules to be depended onJohn Crispin2013-10-081-0/+11
* kernel: lib-textsearch needs to be auto probed for amanda nat to workJohn Crispin2013-09-301-0/+1
* kernel: make most modules use AutoProbeJohn Crispin2013-09-171-12/+0
* kernel: be consistent with formatting styleLuka Perkov2013-07-261-2/+2
* kernel: move xor into its own packageJonas Gorski2013-07-181-0/+16
* kernel: split out lib-raid6Jonas Gorski2013-07-181-0/+16
* packages: clean up the package folderJohn Crispin2013-06-211-0/+165
>\ -I$(BASEDIR)/include/asm-ia64/linux-null \ -I$(BASEDIR)/arch/ia64/linux -I$(BASEDIR)/arch/ia64/linux-xen CFLAGS += $(CPPFLAGS) #CFLAGS += -Wno-pointer-arith -Wredundant-decls CFLAGS += -DIA64 -DXEN -DLINUX_2_6 CFLAGS += -ffixed-r13 -mfixed-range=f2-f5,f12-f127,b2-b5 CFLAGS += -g ifeq ($(vti_debug),y) CFLAGS += -DVTI_DEBUG endif ifeq ($(vmx_panic),y) CFLAGS += -DCONFIG_VMX_PANIC endif ifeq ($(xen_ia64_expose_p2m),y) CFLAGS += -DCONFIG_XEN_IA64_EXPOSE_P2M endif ifeq ($(xen_ia64_pervcpu_vhpt),y) CFLAGS += -DCONFIG_XEN_IA64_PERVCPU_VHPT ifeq ($(vhpt_disable),y) $(error "both xen_ia64_pervcpu_vhpt=y and vhpt_disable=y are enabled. they can't be enabled simultaneously. disable one of them.") endif endif ifeq ($(xen_ia64_tlb_track),y) CFLAGS += -DCONFIG_XEN_IA64_TLB_TRACK endif ifeq ($(xen_ia64_tlb_track_cnt),y) CFLAGS += -DCONFIG_TLB_TRACK_CNT endif ifeq ($(xen_ia64_tlbflush_clock),y) CFLAGS += -DCONFIG_XEN_IA64_TLBFLUSH_CLOCK endif ifeq ($(no_warns),y) CFLAGS += -Wa,--fatal-warnings -Werror -Wno-uninitialized endif ifneq ($(vhpt_disable),y) CFLAGS += -DVHPT_ENABLED=1 else CFLAGS += -DVHPT_ENABLED=0 endif LDFLAGS := -g # Additionnal IA64 include dirs. HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux-null/asm/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux-null/asm/sn/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux-null/linux/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux-xen/asm/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux-xen/asm/sn/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux-xen/linux/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux/asm-generic/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux/asm/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/linux/byteorder/*.h) HDRS += $(wildcard $(BASEDIR)/include/asm-ia64/hvm/*.h) HDRS := $(filter-out %/include/asm-ia64/asm-xsi-offsets.h,$(HDRS))