Kernel headers 3.7.5
-
- Ronin
- Posts: 2
- Joined: 18 Feb 2013, 16:52
- Distribution: debian, centos, linuxmint
- Location: Cyprus
Kernel headers 3.7.5
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.
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.
- wread
- Module Guard
- Posts: 1257
- Joined: 09 Jan 2011, 18:48
- Distribution: Porteus v5.0-kde-64 bits
- Location: Santo Domingo
- Contact:
Re: Kernel headers 3.7.5
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!
The Porteus Community never sleeps!
- francois
- Contributor
- Posts: 6500
- 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
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/
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/

Prendre son temps, profiter de celui qui passe.
-
- Black ninja
- Posts: 73
- Joined: 21 Apr 2012, 00:19
- Distribution: Hannah Montana Linux
- Location: inmygrave
Re: Kernel headers 3.7.5
you can tell me how you make the kernel headers?
bye
bye
Re: Kernel headers 3.7.5
They are outdated. Please upgrade to 2.0 final and use this crippled_sources-porteus-v2.0-i486-1ftm
NjVFQzY2Rg==
-
- Black ninja
- Posts: 73
- Joined: 21 Apr 2012, 00:19
- Distribution: Hannah Montana Linux
- Location: inmygrave
Re: Kernel headers 3.7.5
no sorry,
my question is how to make not where is
thanks.
my question is how to make not where is

thanks.
Re: Kernel headers 3.7.5
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.
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==
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: Kernel headers 3.7.5
@UrUtusUbU
tomorrow i'll post my script for creating crippled sources.
tomorrow i'll post my script for creating crippled sources.
Please add [Solved] to your thread title if the solution was found.
- wread
- Module Guard
- Posts: 1257
- Joined: 09 Jan 2011, 18:48
- Distribution: Porteus v5.0-kde-64 bits
- Location: Santo Domingo
- Contact:
Re: Kernel headers 3.7.5
Fine Bussines, fanthom!
I am needing them too, without them I can not run VBox!
I am needing them too, without them I can not run VBox!

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!
The Porteus Community never sleeps!
-
- Black ninja
- Posts: 73
- Joined: 21 Apr 2012, 00:19
- Distribution: Hannah Montana Linux
- Location: inmygrave
Re: Kernel headers 3.7.5
@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.
perhaps did it have to open a new topic?

@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"
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: Kernel headers 3.7.5
here it is:
must be run after kernel compilation inside a folder with full sources. be aware that original folder will be gone.
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
Please add [Solved] to your thread title if the solution was found.
-
- Black ninja
- Posts: 73
- Joined: 21 Apr 2012, 00:19
- Distribution: Hannah Montana Linux
- Location: inmygrave
Re: Kernel headers 3.7.5
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?
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?