Kernel headers 3.7.5

Post links to your 32-bit module repos here. Repo maintainers are responsible for resolving any issues caused by their xzm's.
ddemetis
Ronin
Ronin
Posts: 2
Joined: 18 Feb 2013, 16:52
Distribution: debian, centos, linuxmint
Location: Cyprus

Kernel headers 3.7.5

Post#1 by ddemetis » 18 Feb 2013, 17:04

I need compile drivers for RALINK wireless adapter (3090sta) but i can't find anywhere headers for the 3.7.5 kernel.

Can you please provide as well the sources of kernel that were used in compiling the porteus 2.0 as .xzm? and be able get it from porteus package manager.

User avatar
Hamza
Warlord
Warlord
Posts: 1908
Joined: 28 Dec 2010, 07:41
Distribution: Porteus
Location: France

Re: Kernel headers 3.7.5

Post#2 by Hamza » 18 Feb 2013, 18:04

NjVFQzY2Rg==

User avatar
wread
Module Guard
Module Guard
Posts: 1255
Joined: 09 Jan 2011, 18:48
Distribution: Porteus v5.0-kde-64 bits
Location: Santo Domingo
Contact:

Re: Kernel headers 3.7.5

Post#3 by wread » 19 Feb 2013, 02:07

Is that not in the repo? If not, it is time to do so...
Porteus is proud of the FASTEST KDE ever made.....(take akonadi, nepomuk and soprano out and you will have a decent OS).
The Porteus Community never sleeps!

User avatar
francois
Contributor
Contributor
Posts: 6434
Joined: 28 Dec 2010, 14:25
Distribution: xfce plank porteus nemesis
Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.

Re: Kernel headers 3.7.5

Post#4 by francois » 19 Feb 2013, 02:37

Hi there Hamza, hi there wread. 8)

It is in Ponce's porteus Index of /i486/testing/Porteus-v2.0-rc2/packages/kernel-sources/:
http://dl.porteus.org/i486/testing/Port ... l-sources/:D
Prendre son temps, profiter de celui qui passe.

User avatar
Hamza
Warlord
Warlord
Posts: 1908
Joined: 28 Dec 2010, 07:41
Distribution: Porteus
Location: France

Re: Kernel headers 3.7.5

Post#5 by Hamza » 19 Feb 2013, 09:12

The link I posted came from Ponce's server.
NjVFQzY2Rg==

UrUtusUbU
Black ninja
Black ninja
Posts: 73
Joined: 21 Apr 2012, 00:19
Distribution: Hannah Montana Linux
Location: inmygrave

Re: Kernel headers 3.7.5

Post#6 by UrUtusUbU » 24 Mar 2013, 02:42

you can tell me how you make the kernel headers?
bye

User avatar
Hamza
Warlord
Warlord
Posts: 1908
Joined: 28 Dec 2010, 07:41
Distribution: Porteus
Location: France

Re: Kernel headers 3.7.5

Post#7 by Hamza » 24 Mar 2013, 13:31

They are outdated. Please upgrade to 2.0 final and use this crippled_sources-porteus-v2.0-i486-1ftm
NjVFQzY2Rg==

UrUtusUbU
Black ninja
Black ninja
Posts: 73
Joined: 21 Apr 2012, 00:19
Distribution: Hannah Montana Linux
Location: inmygrave

Re: Kernel headers 3.7.5

Post#8 by UrUtusUbU » 24 Mar 2013, 16:18

no sorry,
my question is how to make not where is :)
thanks.

User avatar
Hamza
Warlord
Warlord
Posts: 1908
Joined: 28 Dec 2010, 07:41
Distribution: Porteus
Location: France

Re: Kernel headers 3.7.5

Post#9 by Hamza » 24 Mar 2013, 16:34

Full kernel archive may be found there

To get the kernel config, please run this command on the Porteus which is running 3.7.5 kernel.

Code: Select all

modprobe configs && zcat /proc/config.gz > .config
NjVFQzY2Rg==

User avatar
fanthom
Moderator Team
Moderator Team
Posts: 5666
Joined: 28 Dec 2010, 02:42
Distribution: Porteus Kiosk
Location: Poland
Contact:

Re: Kernel headers 3.7.5

Post#10 by fanthom » 24 Mar 2013, 17:47

@UrUtusUbU
tomorrow i'll post my script for creating crippled sources.
Please add [Solved] to your thread title if the solution was found.

User avatar
wread
Module Guard
Module Guard
Posts: 1255
Joined: 09 Jan 2011, 18:48
Distribution: Porteus v5.0-kde-64 bits
Location: Santo Domingo
Contact:

Re: Kernel headers 3.7.5

Post#11 by wread » 24 Mar 2013, 19:14

Fine Bussines, fanthom!
I am needing them too, without them I can not run VBox! :Bravo:
Porteus is proud of the FASTEST KDE ever made.....(take akonadi, nepomuk and soprano out and you will have a decent OS).
The Porteus Community never sleeps!

UrUtusUbU
Black ninja
Black ninja
Posts: 73
Joined: 21 Apr 2012, 00:19
Distribution: Hannah Montana Linux
Location: inmygrave

Re: Kernel headers 3.7.5

Post#12 by UrUtusUbU » 24 Mar 2013, 20:05

@Hamza thank you but it is not that either :)

@fanthom thanks
I do them with this one but sometimes it gives me errors in Kconfig.

Code: Select all

#!/bin/bash
mv System.map ../
make clean
mv ../System.map .
make prepare
make scripts
rm -Rf Documentation drivers fs net sound firmware
ls -1d arch/* | grep -v x86 | xargs rm -Rf
ls -1d include/* | grep asm- | grep -v x86 | grep -v generic | xargs rm -Rf
cp include/generated/* include/linux
echo "all jobs done"
perhaps did it have to open a new topic?

User avatar
fanthom
Moderator Team
Moderator Team
Posts: 5666
Joined: 28 Dec 2010, 02:42
Distribution: Porteus Kiosk
Location: Poland
Contact:

Re: Kernel headers 3.7.5

Post#13 by fanthom » 25 Mar 2013, 06:52

here it is:

Code: Select all

#!/bin/bash

dest=`pwd`
cd $dest

echo "do you want to create crippled sources module? Answer y/n"
read ans
if [ "$ans" = "y" ]; then
name=`echo $dest | rev | cut -d/ -f1 | rev`
mkdir Porteus-patches && chmod -x *.patch && mv *.patch Porteus-patches
cp .config Porteus-patches/kernel.config
rm .config.old 2>/dev/null
mv System.map ../
make clean
mv ../System.map .
make prepare
make scripts
# remove a lot of stuff
rm -Rf Documentation drivers fs net sound firmware
ls -1d arch/* | grep -v x86 | xargs rm -Rf
ls -1d include/* | grep asm- | grep -v x86 | grep -v generic | xargs rm -Rf
cp -a include/generated/* include/linux
pushd include/linux && ln -sf uapi/linux/version.h version.h && popd
mkdir -p new/usr/src/$name
mv * new/usr/src/$name 2>/dev/null
mv .* new/usr/src/$name 2>/dev/null
cd new/usr/src
ln -s $name linux
cd ../../../
rm -f new/usr/src/$name/p_devel
mksquashfs new crippled_sources.xzm -b 256K -Xbcj x86
rm -r new
echo "all jobs done"
fi
must be run after kernel compilation inside a folder with full sources. be aware that original folder will be gone.
Please add [Solved] to your thread title if the solution was found.

UrUtusUbU
Black ninja
Black ninja
Posts: 73
Joined: 21 Apr 2012, 00:19
Distribution: Hannah Montana Linux
Location: inmygrave

Re: Kernel headers 3.7.5

Post#14 by UrUtusUbU » 26 Mar 2013, 23:14

yeah i know how to make it,
thanks very much fanthom.

someone know if I will have problems if I do a downgrade of the kernel to the version 3.4 Lts?

Post Reply