initial commit
imported from https://salsa.debian.org/kernel-team/linux.git commit 9d5cc9d9d6501d7f1dd7e194d4b245bd0b6c6a22 version 6.11.4-1
This commit is contained in:
26
debian/rules.d/tools/power/cpupower/Makefile
vendored
Normal file
26
debian/rules.d/tools/power/cpupower/Makefile
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
include $(top_rulesdir)/Makefile.inc
|
||||
|
||||
MAKE_CPUPOWER := CFLAGS='$(CFLAGS) $(CPPFLAGS)' LDFLAGS='$(LDFLAGS)' $(MAKE) O=$(CURDIR) CPUFREQ_BENCH=false V=true mandir=/usr/share/man
|
||||
|
||||
MAKE_CPUPOWER += DEBUG=$(if $(filter noopt,$(DEB_BUILD_OPTIONS)),true,)
|
||||
|
||||
# Don't strip binaries here; let dh_strip determine what to do
|
||||
MAKE_CPUPOWER += STRIP=true
|
||||
|
||||
MAKE_CPUPOWER += CROSS='$(CROSS_COMPILE)'
|
||||
|
||||
MAKE_CPUPOWER += PACKAGE_BUGREPORT='Debian\ \(reportbug\ linux-cpupower\)'
|
||||
|
||||
MAKE_CPUPOWER += libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
|
||||
|
||||
all:
|
||||
+$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower
|
||||
|
||||
install:
|
||||
+$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower install DESTDIR=$(DESTDIR)
|
||||
ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
|
||||
rm -rf $(DESTDIR)/usr/share/man
|
||||
endif
|
||||
|
||||
clean:
|
||||
+$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower clean
|
6
debian/rules.d/tools/power/x86/Makefile
vendored
Normal file
6
debian/rules.d/tools/power/x86/Makefile
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
SUBDIRS = \
|
||||
intel-speed-select \
|
||||
turbostat \
|
||||
x86_energy_perf_policy
|
||||
|
||||
include $(top_rulesdir)/Makefile.inc
|
15
debian/rules.d/tools/power/x86/intel-speed-select/Makefile
vendored
Normal file
15
debian/rules.d/tools/power/x86/intel-speed-select/Makefile
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
include $(top_rulesdir)/Makefile.inc
|
||||
|
||||
# Intel Speed Select Tool (ISST)
|
||||
MAKE_ISST := CFLAGS='$(CFLAGS) $(CPPFLAGS)' LDFLAGS='$(LDFLAGS)' $(MAKE) O=$(CURDIR)
|
||||
|
||||
MAKE_ISST += bindir=/usr/sbin V=1
|
||||
|
||||
all:
|
||||
$(MAKE_ISST) -C $(top_srcdir)/tools/power/x86/intel-speed-select
|
||||
|
||||
install:
|
||||
$(MAKE_ISST) -C $(top_srcdir)/tools/power/x86/intel-speed-select install DESTDIR=$(DESTDIR)
|
||||
|
||||
clean:
|
||||
$(MAKE_ISST) -C $(top_srcdir)/tools/power/x86/intel-speed-select clean
|
9
debian/rules.d/tools/power/x86/turbostat/Makefile
vendored
Normal file
9
debian/rules.d/tools/power/x86/turbostat/Makefile
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
PROGS = turbostat
|
||||
|
||||
installdir = /usr/sbin
|
||||
|
||||
include $(top_rulesdir)/Makefile.inc
|
||||
|
||||
CPPFLAGS += -I"$(top_srcdir)/tools/include" -DMSRHEADER='"$(top_srcdir)/arch/x86/include/asm/msr-index.h"' -DINTEL_FAMILY_HEADER='"$(top_srcdir)/arch/x86/include/asm/intel-family.h"' -DBUILD_BUG_HEADER='"$(top_srcdir)/include/linux/build_bug.h"'
|
||||
|
||||
LDLIBS += -lcap -lrt
|
7
debian/rules.d/tools/power/x86/x86_energy_perf_policy/Makefile
vendored
Normal file
7
debian/rules.d/tools/power/x86/x86_energy_perf_policy/Makefile
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
PROGS = x86_energy_perf_policy
|
||||
|
||||
installdir = /usr/sbin
|
||||
|
||||
include $(top_rulesdir)/Makefile.inc
|
||||
|
||||
CPPFLAGS += -I"$(top_srcdir)/tools/include" -DMSRHEADER='"$(top_srcdir)/arch/x86/include/asm/msr-index.h"'
|
Reference in New Issue
Block a user