/[packages]/cauldron/kernel-tmb/pristine/SPECS/kernel-tmb.spec
ViewVC logotype

Diff of /cauldron/kernel-tmb/pristine/SPECS/kernel-tmb.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 206041 by tmb, Tue Feb 7 16:37:45 2012 UTC revision 294091 by tmb, Sat Sep 15 10:39:45 2012 UTC
# Line 2  Line 2 
2  # *tmb* series kernels now use kernel.org versioning  # *tmb* series kernels now use kernel.org versioning
3  #  #
4  %define kernelversion   3  %define kernelversion   3
5  %define patchlevel      2  %define patchlevel      5
6  # sublevel is now used for -stable patches  # sublevel is now used for -stable patches
7  %define sublevel        5  %define sublevel        4
8    
9  # Package release  # Package release
10  %define mgarel          1  %define mgarel          1
# Line 101  Line 101 
101  # Build server (i686 / 64GB)/x86_64  # Build server (i686 / 64GB)/x86_64
102  %define build_server            1  %define build_server            1
103    
 # compress modules with xz  
 %define build_modxz             0  
   
104  # End of user definitions  # End of user definitions
105  %{?_without_desktop586: %global build_desktop586 0}  %{?_without_desktop586: %global build_desktop586 0}
106  %{?_without_desktop: %global build_desktop 0}  %{?_without_desktop: %global build_desktop 0}
# Line 114  Line 111 
111  %{?_without_source: %global build_source 0}  %{?_without_source: %global build_source 0}
112  %{?_without_devel: %global build_devel 0}  %{?_without_devel: %global build_devel 0}
113  %{?_without_debug: %global build_debug 0}  %{?_without_debug: %global build_debug 0}
 %{?_without_modxz: %global build_modxz 0}  
114    
115  %{?_with_desktop586: %global build_desktop586 1}  %{?_with_desktop586: %global build_desktop586 1}
116  %{?_with_desktop: %global build_desktop 1}  %{?_with_desktop: %global build_desktop 1}
# Line 125  Line 121 
121  %{?_with_source: %global build_source 1}  %{?_with_source: %global build_source 1}
122  %{?_with_devel: %global build_devel 1}  %{?_with_devel: %global build_devel 1}
123  %{?_with_debug: %global build_debug 1}  %{?_with_debug: %global build_debug 1}
 %{?_with_modxz: %global build_modxz 1}  
124    
125  # For the .nosrc.rpm  # For the .nosrc.rpm
126  %define build_nosrc     0  %define build_nosrc     0
# Line 220  of the operating system:  memory allocat Line 215  of the operating system:  memory allocat
215  input and output, etc.  input and output, etc.
216    
217  ### Global Requires/Provides  ### Global Requires/Provides
218  %define requires1       dracut >= 014-15  %define requires1       dracut >= 017-9
219  %define requires2       bootloader-utils >= 1.12-1  %define requires2       bootloader-utils >= 1.12-1
220  %define requires3       sysfsutils >= 1.3.0-1 module-init-tools >= 3.16-14  %define requires3       sysfsutils >= 1.3.0-1 kmod >= 7-6
221  %define requires4       kernel-firmware >= 20111229-1  %define requires4       kernel-firmware >= 20111229-1
222    
223  %define kprovides       %{kname} = %{kverrel}, kernel = %{tar_ver}, drbd-api = 88  %define kprovides       %{kname} = %{kverrel}, kernel = %{tar_ver}, drbd-api = 88
224    
225  Autoreqprov:            no  Autoreqprov:            no
226  BuildRequires:          gcc >= 4.0.1-5 module-init-tools >= 3.16-14  BuildRequires:          gcc >= 4.0.1-5 kmod >= 7-6
227    
228  %description  %description
229  %common_description_kernel  %common_description_kernel
# Line 563  cd %src_dir Line 558  cd %src_dir
558  %define debug --no-debug  %define debug --no-debug
559  %endif  %endif
560    
 # enable xz module compression  
 %if %build_modxz  
 sed -i  's/^CONFIG_MODULE_COMPRESS_GZIP=y/# CONFIG_MODULE_COMPRESS_GZIP is not set/' \  
         %{patches_dir}/configs/*.config  
 sed -i  's/^# CONFIG_MODULE_COMPRESS_XZ is not set/CONFIG_MODULE_COMPRESS_XZ=y/' \  
         %{patches_dir}/configs/*.config  
 %endif  
   
561  %{patches_dir}/scripts/create_configs %debug --user_cpu="%{_arch}"  %{patches_dir}/scripts/create_configs %debug --user_cpu="%{_arch}"
562    
563  # make sure the kernel has the sublevel we know it has...  # make sure the kernel has the sublevel we know it has...
# Line 648  SaveDevel() { Line 635  SaveDevel() {
635          %ifarch %{ix86} x86_64          %ifarch %{ix86} x86_64
636                  cp -fR arch/x86/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/x86/kernel/                  cp -fR arch/x86/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/x86/kernel/
637                  cp -fR arch/x86/kernel/asm-offsets_{32,64}.c $TempDevelRoot/arch/x86/kernel/                  cp -fR arch/x86/kernel/asm-offsets_{32,64}.c $TempDevelRoot/arch/x86/kernel/
638                    cp -fR arch/x86/syscalls/syscall* $TempDevelRoot/arch/x86/syscalls/
639                  cp -fR arch/x86/include $TempDevelRoot/arch/x86/                  cp -fR arch/x86/include $TempDevelRoot/arch/x86/
640                    cp -fR arch/x86/tools/relocs.c $TempDevelRoot/arch/x86/tools/
641          %else          %else
642                  cp -fR arch/%{_arch}/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/%{_arch}/kernel/                  cp -fR arch/%{_arch}/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/%{_arch}/kernel/
643                  cp -fR arch/%{_arch}/include $TempDevelRoot/arch/%{_arch}/                  cp -fR arch/%{_arch}/include $TempDevelRoot/arch/%{_arch}/
644          %endif          %endif
645          cp -fR kernel/bounds.c $TempDevelRoot/kernel/          cp -fR kernel/bounds.c $TempDevelRoot/kernel/
646            cp -fR tools/include $TempDevelRoot/tools/
647          cp -fR .config Module.symvers $TempDevelRoot          cp -fR .config Module.symvers $TempDevelRoot
648          cp -fR 3rdparty/mkbuild.pl $TempDevelRoot/3rdparty/          cp -fR 3rdparty/mkbuild.pl $TempDevelRoot/3rdparty/
649    
# Line 675  SaveDevel() { Line 665  SaveDevel() {
665          # add acpica header files, needed for fglrx build          # add acpica header files, needed for fglrx build
666          cp -fR drivers/acpi/acpica/*.h $TempDevelRoot/drivers/acpi/acpica/          cp -fR drivers/acpi/acpica/*.h $TempDevelRoot/drivers/acpi/acpica/
667    
668          for i in alpha arm arm26 avr32 blackfin cris frv h8300 hexagon ia64 microblaze mips m32r m68k \          for i in alpha arm arm26 avr32 blackfin c6x cris frv h8300 hexagon ia64 \
669                   m68knommu mn10300 openrisc parisc powerpc ppc s390 sh sh64 score sparc tile \                   microblaze mips m32r m68k m68knommu mn10300 openrisc parisc \
670                   unicore32 v850 xtensa; do                   powerpc ppc s390 sh sh64 score sparc tile unicore32 v850 xtensa; do
671                  rm -rf $TempDevelRoot/arch/$i                  rm -rf $TempDevelRoot/arch/$i
672          done          done
673    
# Line 730  $DevelRoot/include/keys Line 720  $DevelRoot/include/keys
720  $DevelRoot/include/linux  $DevelRoot/include/linux
721  $DevelRoot/include/math-emu  $DevelRoot/include/math-emu
722  $DevelRoot/include/media  $DevelRoot/include/media
723    $DevelRoot/include/memory
724  $DevelRoot/include/misc  $DevelRoot/include/misc
725  $DevelRoot/include/mtd  $DevelRoot/include/mtd
726  $DevelRoot/include/net  $DevelRoot/include/net
# Line 960  chmod -R a+rX %{target_source} Line 951  chmod -R a+rX %{target_source}
951    
952  # we remove all the source files that we don't ship  # we remove all the source files that we don't ship
953  # first architecture files  # first architecture files
954  for i in alpha arm arm26 avr32 blackfin cris frv h8300 hexagon ia64 microblaze mips m32r m68k \  for i in alpha arm arm26 avr32 blackfin c6x cris frv h8300 hexagon ia64 \
955           m68knommu mn10300 openrisc parisc powerpc ppc s390 sh sh64 score sparc tile \           microblaze mips m32r m68k m68knommu mn10300 openrisc parisc \
956           v850 xtensa unicore32; do           powerpc ppc s390 sh sh64 score sparc tile v850 xtensa unicore32; do
957          rm -rf %{target_source}/arch/$i          rm -rf %{target_source}/arch/$i
958  done  done
959    
# Line 1030  popd Line 1021  popd
1021  %{_kerneldir}/include/linux  %{_kerneldir}/include/linux
1022  %{_kerneldir}/include/math-emu  %{_kerneldir}/include/math-emu
1023  %{_kerneldir}/include/media  %{_kerneldir}/include/media
1024    %{_kerneldir}/include/memory
1025  %{_kerneldir}/include/misc  %{_kerneldir}/include/misc
1026  %{_kerneldir}/include/mtd  %{_kerneldir}/include/mtd
1027  %{_kerneldir}/include/net  %{_kerneldir}/include/net
# Line 1075  popd Line 1067  popd
1067  %endif  %endif
1068    
1069  %changelog  %changelog
1070    * Sat Sep 15 2012 Thomas Backlund <tmb@mageia.org> 3.5.4-1.mga3
1071    - update to 3.5.4
1072    - drop merged patches:
1073      * AA01-AA85, FE01, FU01
1074    
1075    * Tue Sep 11 2012 Thomas Backlund <tmb@mageia.org> 3.5.3-2.mga3
1076    - add patches:
1077      * AA01-AA85: stable queue fixes
1078      * FO01-FO13: overlayfs support (from ubuntu)
1079      * FE01: ext3: Fix fdatasync() for files with only i_size changes (mga #7343)
1080      * FU01: udf: Fix data corruption for files in ICB
1081    - drop patches:
1082      * FU01-FU04: unionfs support (broken)
1083    - update defconfigs
1084    
1085    * Mon Aug 27 2012 Thomas Backlund <tmb@mageia.org> 3.5.3-1.mga3
1086    - update to 3.5.3
1087    
1088    * Thu Aug 16 2012 Thomas Backlund <tmb@mageia.org> 3.5.2-1.mga3
1089    - update to 3.5.2
1090    - update patches:
1091      * CK01: ck1 patchset for 3.5 series kernels including BFS 0.424
1092      * KP01: TuxOnIce 3.3 for 3.5 series kernels
1093    - drop merged patches:
1094      * AA01-AA13: (stable queue fixes)
1095      * BS01: silencing useless scsi ioctl warnings
1096      * CK02: BFS buildfix
1097    - add patches:
1098      * FU03, FU04: unionfs buildfixes for 3.5 series kernels
1099    - update filelists
1100    - update defconfigs
1101    
1102    * Sat Jul 21 2012 Thomas Backlund <tmb@mageia.org> 3.4.6-2.mga3
1103    - make CONFIG_ATA_PIIX, CONFIG_BLK_DEV_SD and CONFIG_CRC_T10DIF
1104      builtin too, so it actually can boot without initrd
1105    - disable CONFIG_LOGO for less screen flickering during boot
1106    
1107    * Fri Jul 20 2012 Thomas Backlund <tmb@mageia.org> 3.4.6-1.mga3
1108    - update to 3.4.6
1109    - drop patch:
1110      * DN25: ipw2x00: add support for nl80211 clients (merged)
1111    - update patch:
1112      * CK01: -ck3 patchset including BFS v0.424
1113    - add patches:
1114      * AA01-AA13: stable queue fixes
1115      * BS01: silence useless scsi ioctl warnings
1116      * CK02: fix BFS build with sched-nohz-rewrite added in 3.4.6
1117    - make theese config options builtin in order to be able to
1118      test booting without initrd:
1119      (see: https://wiki.mageia.org/en/Feature:BootSansRamdisk)
1120      CONFIG_SCSI_MOD, CONFIG_SCSI, CONFIG_ATA, CONFIG_SATA_AHCI,
1121      CONFIG_EXT3_FS, CONFIG_EXT4_FS, CONFIG_JBD, CONFIG_JBD2,
1122      CONFIG_BTRFS_FS, CONFIG_CRYPTO_CRC32C, CONFIG_CRC16,
1123      CONFIG_LIBCRC32C, CONFIG_ZLIB_DEFLATE
1124    
1125    * Sun Jul  1 2012 Thomas Backlund <tmb@mageia.org> 3.4.4-2.mga3
1126    - enable EFI_STUB support (#6598)
1127    
1128    * Wed Jun 27 2012 Thomas Backlund <tmb@mageia.org> 3.4.4-1.mga3
1129    - update to 3.4.4
1130    - drop patch:
1131      * AA01: 3.4.4-rc1 (merged)
1132    
1133    * Wed Jun 20 2012 Thomas Backlund <tmb@mageia.org> 3.4.3-1.mga3
1134    - update to 3.4.3
1135    - add patch:
1136      * AA01: 3.4.4-rc1
1137    - drop patch:
1138      * FE01: ext4 uninit_bg fix (merged)
1139    - update patch:
1140      * CK01: ck2 patchset including BFS 0.423
1141    
1142    * Sat Jun  9 2012 Thomas Backlund <tmb@mageia.org> 3.4.2-1.mga3
1143    - update to 3.4.2
1144    - add patch:
1145      * FE01: ext4: fix the free blocks calculation for ext3
1146              file systems w/ uninit_bg
1147    
1148    * Mon Jun  4 2012 Thomas Backlund <tmb@mageia.org> 3.4.1-1.mga3
1149    - update to 3.4.1
1150    - drop merged patches:
1151      * DA60, DA61: ahci/ata ids
1152      * DG01-DG04, DG20-DG21, DG40-DG44, DG60: drm backports
1153      * DN10-DN11: ath5k stablilty fixes
1154      * DS20-DS24: sound fixes
1155    - update patches:
1156      * CK01: ck1 patchset including BFS 0.422
1157      * FU01: unionfs 2.5.11
1158      * KP01: tuxonice 3.2.1
1159      * NI10-NI11: netfilter IFWLOG support
1160      * NI16: netfilter psd support
1161    - add patches:
1162      * DM60: radio-rttrack buildfix
1163      * FU02: unionfs buildfix for kernel-3.4
1164    - drop patches:
1165      * DA50: prefer ata over ide hack, needs to be fixed properly
1166      * DN20: disabling powersave on rt2800usb
1167      * LK01: lib/Kconfig.debug text update
1168    - update defconfigs
1169    - update filelists
1170    
1171    * Thu May 17 2012 Thomas Backlund <tmb@mageia.org> 3.3.6-2.mga2
1172    - revert switching server kernels to SLAB allocator at it fails to boot
1173      with BFS scheduler (reported/confirmed by Charles A Edwards.on -dev ml)
1174    - add patches:
1175      * DN25: ipw2x00: add support for nl80211 clients like Network Manager (#5720)
1176      * DS20: ALSA: echoaudio: Remove incorrect part of assertion
1177      * DS21: ALSA: HDA: Lessen CPU usage when waiting for chip to respond
1178      * DS22: ALSA: hda/realtek - Add missing CD-input pin for MSI-7350 mobo
1179      * DS23: ALSA: hda/idt - Fix power-map for speaker-pins with some HP laptops
1180    
1181    * Sat May 12 2012 Thomas Backlund <tmb@mageia.org> 3.3.6-1.mga2
1182    - update to 3.3.6
1183    - drop merged patches:
1184      * AA01-AA32: stable queue fixes
1185      * DP10-DP13: samsung-laptop dmitable addons
1186    - switch server kernels back to SLAB allocator as it performs better
1187      on bigger server hardware and workloads
1188    
1189    * Thu May 10 2012 Thomas Backlund <tmb@mageia.org> 3.3.5-1.mga2
1190    - update to 3.3.5
1191    - drop merged patches:
1192      * DN15-DN17: iwlwifi fixes
1193    - add patches from stable queue
1194      * AA01-AA32: fixes all over
1195    
1196    * Sat Apr 28 2012 Thomas Backlund <tmb@mageia.org> 3.3.4-1.mga2
1197    - update to 3.3.4
1198    - require dracut >= 017-9
1199    - add patches:
1200      * DN16: iwlwifi: use 6000G2B for 6030 device series
1201      * DN17: iwlwifi: fix hardware queue programming
1202    
1203    * Mon Apr 23 2012 Thomas Backlund <tmb@mageia.org> 3.3.3-1.mga2
1204    - update to 3.3.3
1205    - add patches:
1206      * BF01: floppy: disable pnp autoloading
1207      * DN10: ath5k: do not stop queues for full calibration
1208      * DN11: ath5k: do not re-run AGC calibration periodically
1209      * DN15: iwlwifi: use correct released ucode version
1210    - update patch:
1211      * KP01: TuxOnIce 3.2.1 for kernel-3.3
1212    
1213    * Tue Apr 03 2012 Thomas Backlund <tmb@mageia.org> 3.3.1-1.mga2
1214    - update to 3.3.1
1215    - drop merged patches:
1216      * DM51, SR01-SR03
1217    - update patch:
1218      * CK01: -ck1 patchset including BFS v0.420
1219    - add patches:
1220      * DA50: ata: prefer ata drivers over ide drivers when both are built (Anssi)
1221      * DA60-DA61: ata: add ide/ahci/raid mode support for Intel Lynx Point chipset
1222      * DG01-DG04: drm: add upstream drm changes to support gpu driver backports
1223      * DG20, DG21: drm/radeon: backport support for Southern Islands (HD7xxx)
1224                    GPUs and Trinity APUs
1225      * DG40-DG44: drm/nouveau: backport Kepler (GTX6xx) support
1226      * DG60: drm/i915: add Ivy Bridge GT2 Server entries
1227    - update defconfigs
1228    
1229    * Mon Mar 19 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-1.mga2
1230    - update to 3.3 final
1231    - add patches:
1232        * DM50: media: fix initialization on Hauppauge WinTV Nova HD-S2
1233                and similar hardware
1234        * DM51: media/tda10071: correct delivery system to DVB-S/S2
1235    - update defconfigs
1236    
1237    * Sun Mar 11 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-0.rc7.1.mga2
1238    - update to 3.3-rc7
1239    
1240    * Wed Mar  7 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-0.rc6.1.mga2
1241    - update to 3.3-rc6
1242    - update patches:
1243        * FU01: unionfs 2.5.11
1244        * MB10, MB13, MB14: ndiswrapper 1.57
1245    - rediff patches:
1246        * NI15, NI16: netfilter psd support
1247        * patch disabling mrproper in -devel rpms
1248    - disable patch:
1249        * CK01: -ck1 patchset including BFS sceduler (needs update to 3.3 series)
1250    - update defconfigs
1251    - update filelists
1252    
1253    * Thu Mar  1 2012 Thomas Backlund <tmb@mageia.org> 3.2.9-1.mga2
1254    - update to 3.2.9
1255    - require dracut >= 017-1
1256    - drop merged patches:
1257        * DG01, DP01, DU01, NM01
1258    - add patches:
1259        * SR01-SR03: fix nonworking r8172u wireless driver in staging (#4491)
1260    
1261    * Sat Feb 25 2012 Thomas Backlund <tmb@mageia.org> 3.2.7-1.mga2
1262    - update to 3.2.7
1263    - drop merged patches AA01-AA28
1264    - add patches:
1265        * DG01: drm/radeon/kms: fix MSI re-arm on rv370+
1266        * DP01: PCI: workaround hard-wired bus number
1267        * DS20, DS21: fix nonworking r8172u wireless driver in staging (#4491)
1268        * DU01: xhci: Fix oops caused by more USB2 ports than USB3 ports
1269        * NM01: mac80211: Fix a rwlock bad magic bug
1270    
1271    * Thu Feb 16 2012 Thomas Backlund <tmb@mageia.org> 3.2.6-1.mga2
1272    - update to 3.2.6
1273    - add current stable queue (28 fixes, AA01-AA28)
1274    - require dracut >= 016-1 for xz compressed modules support and
1275      other needed fixes
1276    - compress modules with xz
1277    
1278  * Tue Feb  7 2012 Thomas Backlund <tmb@mageia.org> 3.2.5-1.mga2  * Tue Feb  7 2012 Thomas Backlund <tmb@mageia.org> 3.2.5-1.mga2
1279  - update to 3.2.5  - update to 3.2.5
1280  - drop merged patch  - drop merged patch

Legend:
Removed from v.206041  
changed lines
  Added in v.294091

  ViewVC Help
Powered by ViewVC 1.1.30