mirror of
https://abf.rosa.ru/djam/kernel-6.6.git
synced 2025-02-25 11:52:46 +00:00
Replace with version from current
This commit is contained in:
parent
d9136d88cc
commit
5e1d49b570
11 changed files with 1190 additions and 5859 deletions
6
.abf.yml
6
.abf.yml
|
@ -1,4 +1,4 @@
|
|||
sources:
|
||||
"linux-2.6.38.7-mnb1.tar.bz2": 17a9d3aa4ada04210320f25da8cdffc7b268d7dc
|
||||
"linux-2.6.38.tar.bz2": 02aade5ad3dedd70739c9b4a05de40edbe432d25
|
||||
"patch-2.6.38.7.bz2": 3eeb6983791e28e7bcbf0e272cd43dac49c6154c
|
||||
"linux-3.14.tar.xz": fc777520e5976caf0d5513502b8156f73748e379
|
||||
"patch-3.14.33.xz": a7df0fde43e8ba7f1ca4233f3f32e4a8f1e6a1e5
|
||||
"kernel-patches-and-configs-3.14.33.tar.xz": 7bb00926c94721af88a2229adb091ded8e774e9c
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
Hello Mandriva Users,
|
||||
Hello Mandriva, OpenMandriva, MagOS and Rosa Linux Users,
|
||||
|
||||
kernel-headers contains the headers for the source code of Linux kernel.
|
||||
All source code necessary to compile a new kernel is included in two
|
||||
packages kernel-headers, and kernel-source. You will need to install
|
||||
both kernel-headers (needed for general Linux compilation), and
|
||||
kernel-source in order to compile a new kernel.
|
||||
linux-userspace-headers contains the headers for the source code of
|
||||
Linux kernel. All source code necessary to compile a new kernel is
|
||||
included in two packages linux-userspace-headers, and kernel-source.
|
||||
You will need to install both linux-userspace-headers (needed for
|
||||
general Linux compilation), and kernel-source in order to compile
|
||||
a new kernel.
|
||||
|
||||
The kernel is the central process of your Linux machine, the mediator
|
||||
between the hardware and your programs. It is responsible for memory
|
||||
|
@ -14,8 +15,6 @@ Although modern kernels are very flexible thanks to dynamic modules, you
|
|||
may need to compile your own kernel for various reasons: your found a
|
||||
new module which need a more recent kernel, you need a feature of a new
|
||||
kernel, etc...
|
||||
Anyway, all the new kernels may be found in the cooker distrib (look for
|
||||
mirrors at http://qa.mandriva.com/twiki/bin/view/Main/CookerMirrors).
|
||||
|
||||
Here is a short sum-up of what you can find in the Kernel-HOWTO. Consult
|
||||
it in case of a problem or if the shortcut here provided does not meet
|
||||
|
@ -88,3 +87,5 @@ Enjoy!
|
|||
========================================================================
|
||||
(c) 1999-2006 Mandriva, Camille Bégnis <camille@mandriva.com>
|
||||
(c) 2006 Thomas Backlund <tmb@mandriva.org>
|
||||
(c) 2011 Thomas Backlund <tmb@mageia.org>
|
||||
(c) 2011 Nicolò Costanza <abitrules@yahoo.it>
|
||||
|
|
3
cpupower.config
Normal file
3
cpupower.config
Normal file
|
@ -0,0 +1,3 @@
|
|||
# See 'cpupower help' and cpupower(1) for more info
|
||||
CPUPOWER_START_OPTS="frequency-set -g @GOVERNOR@"
|
||||
CPUPOWER_STOP_OPTS="frequency-set -g @GOVERNOR@"
|
13
cpupower.service
Normal file
13
cpupower.service
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=Configure CPU power related settings
|
||||
After=syslog.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
EnvironmentFile=/etc/sysconfig/cpupower
|
||||
ExecStart=/usr/bin/cpupower $CPUPOWER_START_OPTS
|
||||
ExecStop=/usr/bin/cpupower $CPUPOWER_STOP_OPTS
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -1,23 +1,24 @@
|
|||
|
||||
Makefile | 13 +++++--------
|
||||
scripts/kconfig/Makefile | 18 ------------------
|
||||
2 files changed, 5 insertions(+), 26 deletions(-)
|
||||
Makefile | 24 ++++++++++++------------
|
||||
scripts/kconfig/Makefile | 19 -------------------
|
||||
2 files changed, 12 insertions(+), 31 deletions(-)
|
||||
|
||||
diff -urp linux-2.6.38-mga0.2/Makefile linux-2.6.38-mga0.2-mrproper/Makefile
|
||||
--- linux-2.6.38-mga0.2/Makefile 2011-03-20 05:16:56.702931902 +0200
|
||||
+++ linux-2.6.38-mga0.2-mrproper/Makefile 2011-03-20 05:18:01.828314994 +0200
|
||||
@@ -482,8 +482,7 @@ ifeq ($(KBUILD_EXTMOD),)
|
||||
diff -Nurp linux-3.14.2-1.mga4/Makefile linux-3.14.2-1.mga4.mrproper/Makefile
|
||||
--- linux-3.14.2-1.mga4/Makefile 2014-04-26 18:57:12.134824274 +0300
|
||||
+++ linux-3.14.2-1.mga4.mrproper/Makefile 2014-04-26 18:58:36.410828557 +0300
|
||||
@@ -522,9 +522,7 @@ ifeq ($(KBUILD_EXTMOD),)
|
||||
# Carefully list dependencies so we do not try to build scripts twice
|
||||
# in parallel
|
||||
PHONY += scripts
|
||||
-scripts: scripts_basic include/config/auto.conf include/config/tristate.conf
|
||||
-scripts: scripts_basic include/config/auto.conf include/config/tristate.conf \
|
||||
- asm-generic
|
||||
- $(Q)$(MAKE) $(build)=$(@)
|
||||
+scripts:
|
||||
|
||||
# Objects we will link into vmlinux / subdirs we need to visit
|
||||
init-y := init/
|
||||
@@ -956,7 +955,7 @@ prepare0: archprepare FORCE
|
||||
$(Q)$(MAKE) $(build)=. missing-syscalls
|
||||
@@ -884,7 +882,7 @@ prepare0: archprepare FORCE
|
||||
$(Q)$(MAKE) $(build)=.
|
||||
|
||||
# All the preparing..
|
||||
-prepare: prepare0
|
||||
|
@ -25,20 +26,30 @@ diff -urp linux-2.6.38-mga0.2/Makefile linux-2.6.38-mga0.2-mrproper/Makefile
|
|||
|
||||
# Generate some files
|
||||
# ---------------------------------------------------------------------------
|
||||
@@ -1132,10 +1131,8 @@ CLEAN_FILES += vmlinux System.map \
|
||||
.tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
|
||||
@@ -1066,13 +1064,15 @@ endif # CONFIG_MODULES
|
||||
CLEAN_DIRS += $(MODVERDIR)
|
||||
|
||||
# Directories & files removed with 'make mrproper'
|
||||
-MRPROPER_DIRS += include/config usr/include include/generated
|
||||
-MRPROPER_FILES += .config .config.old .version .old_version \
|
||||
- include/linux/version.h \
|
||||
- Module.symvers tags TAGS cscope*
|
||||
+MRPROPER_DIRS += ""
|
||||
+MRPROPER_FILES += ""
|
||||
-MRPROPER_DIRS += include/config usr/include include/generated \
|
||||
- arch/*/include/generated
|
||||
-MRPROPER_FILES += .config .config.old .version .old_version $(version_h) \
|
||||
- Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
|
||||
- signing_key.priv signing_key.x509 x509.genkey \
|
||||
- extra_certificates signing_key.x509.keyid \
|
||||
- signing_key.x509.signer
|
||||
+#MRPROPER_DIRS += include/config usr/include include/generated \
|
||||
+# arch/*/include/generated
|
||||
+#MRPROPER_FILES += .config .config.old .version .old_version $(version_h) \
|
||||
+# Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
|
||||
+# signing_key.priv signing_key.x509 x509.genkey \
|
||||
+# extra_certificates signing_key.x509.keyid \
|
||||
+# signing_key.x509.signer
|
||||
+MRPROPER_DIRS += ""
|
||||
+MRPROPER_FILES += ""
|
||||
|
||||
# clean - Delete most, but leave enough to build external modules
|
||||
#
|
||||
@@ -1153,7 +1150,7 @@ clean: archclean
|
||||
@@ -1093,7 +1093,7 @@ clean: archclean vmlinuxclean
|
||||
#
|
||||
mrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS))
|
||||
mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
|
||||
|
@ -47,11 +58,11 @@ diff -urp linux-2.6.38-mga0.2/Makefile linux-2.6.38-mga0.2-mrproper/Makefile
|
|||
|
||||
PHONY += $(mrproper-dirs) mrproper archmrproper
|
||||
$(mrproper-dirs):
|
||||
diff -urp linux-2.6.38-mga0.2/scripts/kconfig/Makefile linux-2.6.38-mga0.2-mrproper/scripts/kconfig/Makefile
|
||||
--- linux-2.6.38-mga0.2/scripts/kconfig/Makefile 2011-03-20 05:16:56.702931902 +0200
|
||||
+++ linux-2.6.38-mga0.2-mrproper/scripts/kconfig/Makefile 2011-03-20 05:18:01.828314994 +0200
|
||||
@@ -12,26 +12,18 @@ Kconfig := Kconfig
|
||||
endif
|
||||
diff -Nurp linux-3.14.2-1.mga4/scripts/kconfig/Makefile linux-3.14.2-1.mga4.mrproper/scripts/kconfig/Makefile
|
||||
--- linux-3.14.2-1.mga4/scripts/kconfig/Makefile 2014-04-26 18:57:12.134824274 +0300
|
||||
+++ linux-3.14.2-1.mga4.mrproper/scripts/kconfig/Makefile 2014-04-26 18:58:36.411828571 +0300
|
||||
@@ -15,26 +15,18 @@ endif
|
||||
unexport CONFIG_
|
||||
|
||||
xconfig: $(obj)/qconf 3rdparty/Makefile
|
||||
- $< $(Kconfig)
|
||||
|
@ -75,19 +86,25 @@ diff -urp linux-2.6.38-mga0.2/scripts/kconfig/Makefile linux-2.6.38-mga0.2-mrpro
|
|||
- $(Q)mkdir -p include/generated
|
||||
- $< --$@ $(Kconfig)
|
||||
|
||||
# if no path is given, then use src directory to find file
|
||||
ifdef LSMOD
|
||||
@@ -98,26 +90,16 @@ update-po-config: $(obj)/kxgettext $(obj
|
||||
localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf 3rdparty/Makefile
|
||||
$(Q)mkdir -p include/generated
|
||||
@@ -77,32 +69,21 @@ update-po-config: $(obj)/kxgettext $(obj
|
||||
PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig
|
||||
|
||||
allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf 3rdparty/Makefile
|
||||
- $< --$@ $(Kconfig)
|
||||
|
||||
PHONY += listnewconfig oldnoconfig savedefconfig defconfig
|
||||
PHONY += listnewconfig olddefconfig oldnoconfig savedefconfig defconfig
|
||||
|
||||
listnewconfig oldnoconfig: $(obj)/conf 3rdparty/Makefile
|
||||
listnewconfig olddefconfig: $(obj)/conf 3rdparty/Makefile
|
||||
- $< --$@ $(Kconfig)
|
||||
|
||||
# oldnoconfig is an alias of olddefconfig, because people already are dependent
|
||||
# on its behavior(sets new symbols to their default value but not 'n') with the
|
||||
# counter-intuitive name.
|
||||
oldnoconfig: $(obj)/conf 3rdparty/Makefile
|
||||
- $< --olddefconfig $(Kconfig)
|
||||
|
||||
savedefconfig: $(obj)/conf 3rdparty/Makefile
|
||||
- $< --$@=defconfig $(Kconfig)
|
||||
|
||||
|
|
2
kernel.rpmlintrc
Normal file
2
kernel.rpmlintrc
Normal file
|
@ -0,0 +1,2 @@
|
|||
# too many false errors
|
||||
addFilter(".*")
|
6889
kernel.spec
6889
kernel.spec
File diff suppressed because it is too large
Load diff
|
@ -1,8 +0,0 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.11 (GNU/Linux)
|
||||
Comment: See http://www.kernel.org/signature.html for info
|
||||
|
||||
iD8DBQBNftiIyGugalF9Dw4RArlpAJ0UjLWogtvN6W3Wj1cH5dH5DL4Y+wCePi0r
|
||||
IrF0+FZ1nuSJ4G8IcEM0K1Y=
|
||||
=N2sw
|
||||
-----END PGP SIGNATURE-----
|
11
linux-3.14.tar.sign
Normal file
11
linux-3.14.tar.sign
Normal file
|
@ -0,0 +1,11 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iQEcBAABAgAGBQJTOOUkAAoJEHm+PkMAQRiGRzUH/RTLPnnpw/jo13GAXnAAwesO
|
||||
k8Bb1YnkLLkRoOU5tIatQxUn6uDEtkZMcAA4GbTin58gIzBlfrdDOtrOnWoerKaJ
|
||||
2Gbltrf4B6Y/nQWFPAJR6CQLNc/0cl4Djh8sUQ/wDt2XzpExbIUg2nOmq/Bk8v5t
|
||||
wW9YFAhS0kar3bhTCKk1fyNf4uHxBTzNMnTAumZjMqoKjXo58uxwqwp5SrAOrcJU
|
||||
a1M7rqUo2ZPrKj453LM296naGBInM3/yGQhFBJCmhIPTLg+ekrXDIQREZkPsb8R8
|
||||
NeLSzyHbGqf6x0bhyUi4gunQRcTXMIUI5p6NzsPGnJep95hfrZal5lNnHeZzqeM=
|
||||
=xfKd
|
||||
-----END PGP SIGNATURE-----
|
|
@ -1,8 +0,0 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.11 (GNU/Linux)
|
||||
Comment: See http://www.kernel.org/signature.html for info
|
||||
|
||||
iD8DBQBN2EVfyGugalF9Dw4RAsSHAKCLKwaEPGJEDdpckrOReObpinESYwCcD0w7
|
||||
pWmJmIjIV8TsbgNuMqgntpU=
|
||||
=wOpp
|
||||
-----END PGP SIGNATURE-----
|
17
patch-3.14.33.sign
Normal file
17
patch-3.14.33.sign
Normal file
|
@ -0,0 +1,17 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2
|
||||
|
||||
iQIcBAABCAAGBQJU2v1LAAoJEDjbvchgkmk+oqYQAMC4AogMHsSnKETbQVfbwmug
|
||||
10bXJbOEibsfPh3BxXyQBHfQQUm20boXEuH5EFoO/vd0Q5Q0CPkaxoyImO+Bf5LA
|
||||
9rjqGmwqYs2AaHNsj0tGUFH4+dkQ6dff/CB65zH84P9h5wcWya2rv2uIWrHxSEyN
|
||||
XyQmcAOmPSeCoCq66NAlRWtjHFwU3qYO8nrYvZx5aVQbLBfLH5dhm3qWTMRnLGE2
|
||||
aN674GLI1hB3dDy27iiAbXIsMNrmUgPds9P58tUc9X+e7TfuhwxGFXx/yNb/sXbm
|
||||
E+KH/xbfLSJln0sXotW3egrACqUCG2Y1iQXjg1gMZca6euiZlP8ye9Tjr1nO1m0Q
|
||||
4GWzNLN2GH0DYoTbAc8gQn/ZiCZA+fgFIS6uOq5l0s4XjPRSSLWEWVIi6NHyMJCW
|
||||
Cr2cmAE/EdyU4hxHdSRj0d7f7QXZAtnEPYgfY16oIuLfE5KpxYoyeUP1gDJbVVfm
|
||||
30J7DZL1PT8V/DtizldTRpBror/CMKeH/Oh0jTHaFqVrcKkI7Ps+mOlpA4tGGRjl
|
||||
CwpXpRt5Sj3A7ZCoC/rQrLiMUP8+K3fPaG6CB856YV1o6bjBqLpEMjiuWVYmIXaX
|
||||
0cYE5C+qDxlYG57K1/OasiniIGFNexIp433hNIzPUPfLVhsRHtSfQ6L6NuNx4QnP
|
||||
C+67EgoMedQ8QtH1BbNO
|
||||
=JGop
|
||||
-----END PGP SIGNATURE-----
|
Loading…
Add table
Reference in a new issue