首先对内核进行菜单配置,
代码:
[code]cd /usr/src/linux
make menuconfig[/code]
代码成熟度选项,
代码:
[code]Code maturity level options --->
[*] Prompt for development and/or incomplete code/drivers
[*] Select only drivers expected to compile cleanly[/code]
打开使用开发中、不完全的代码/驱动会让内核配置多出很多选项,由于我们需要使用一些正在开发中的功能,因此必需打开这一选项。
通用设置选项
代码:
[code]General setup --->
() Local version - append to kernel release
[*] Support for paging of anonymous memory (swap)
[*] System V IPC
[*] POSIX Message Queues
[*] BSD Process Accounting
[*] BSD Process Accounting version 3 file format
[*] Sysctl support
[ ] Auditing support
(15) Kernel log buffer size (16 => 64KB, 17 => 128KB)
[*] Support for hot-pluggable devices
[*] Kernel Userspace Events
[*] Kernel .config support
[*] Enable access to .config through /proc/config.gz
[*] Configure standard kernel features (for small systems) --->
--- Configure standard kernel features (for small systems)
[ ] Load all symbols for debugging/kksymoops
[*] Enable futex support
[*] Enable eventpoll support
[*] Optimize for size
[*] Use full shmem filesystem
(0) Function alignment
(0) Label alignment
(0) Loop alignment
(0) Jump alignment[/code]
Local version - append to kernel release:这里填入的是64字符以内的字符串,你在这里填上的字符口串可以用uname -a命令看到。
Support for paging of anonymous memory (swap):这是使用交换分区或者交换文件来做为虚拟内存的,当然要选上了。
System V IPC:表示系统5的Inter Process Communication,它用于处理器在程序之间同步和交换信息,如果不选这项,很多程序运行不起来的。
POSIX Message Queues:这是POSIX的消息队列,它同样是一种IPC。建议你最好将它选上。
BSD Process Accounting:这是充许用户进程访问内核将账户信息写入文件中的。这通常被认为是个好主意,建议你最好将它选上。
Sysctl support:这个选项能不重新编译内核修改内核的某些参数和变量,如果你也选择了支持/proc,将能从/proc/sys存取可以影响内核的参数或变量。建议你最好将它选上。
Auditing support:审记支持,用于和内核的某些子模块同时工作,例如SELinux。只有选择此项及它的子项,才能调用有关审记的系统调用。
Kernel log buffer size:内核日志缓存的大小,12 => 4 KB,13 => 8 KB,14 =>
16 KB单处理器,15 => 32 KB多处理器,16 => 64 KB for x86 NUMAQ or IA-64,17
=> 128 KB for S/390。
Support for hot-pluggable devices:是否支持热插拔的选项,肯定要选上。不然USB、PCMCIA等这些设备都用不了。
Kernel Userspace Events:内核中分为系统区和用户区,这里系统区和用户区进行通讯的一种方式,选上。
Kernel .config support:将.config配置信息保存在内核中,选上它及它的子项使得其它用户能从/proc中得到内核的配置。还记得另一篇贴子我是如何取得启动光盘的内核配置信息,并在此基础上配置新的内核吗?
Configure standard kernel features (for small systems):这是为了编译某些特殊的内核使用的,通常你可以不选择这一选项,你也不用对它下面的子项操心了。
Load all symbols for debugging/kksymoops:是否装载所有的调试符号表信息,如果你不需要对内核调试,不需要选择此项。
Enable futex support:不选这个内核不一定能正确的运行使用glibc的程序,当然要选上。
Enable eventpoll support:不选这个内核将不支持事件轮循的系统调用,最好选上。
Optimize for size:这个选项使gcc使用-Os的参数而不是-O2的参数来优化编译,以获得更小尺寸的内核,建议选上。
Use full shmem filesystem:除非你在很少的内存且不使用交换内存时,才不要选择这项。
后面的这四项都是在编译时内存中的对齐方式,0表示编译器的默认方式。使用内存对齐能提高程序的运行速度,但是会增加程序对内存的使用量。
内核也是一组程序呀。
可加载模块,
代码:
[code]Loadable module support --->
[*] Enable loadable module support
[*] Module unloading
[ ] Forced module unloading
[*] Module versioning support (EXPERIMENTAL)
[ ] Source checksum for all modules
[*] Automatic kernel module loading[/code]
Enable loadable module
support,很多人喜欢将全部功能、硬件支持一股脑的编进内核,而不是使用模块的方式。这样做非常不好(个人觉得)。其实我也做过嵌入式的开发,在针
对特定硬件的平台下尽可能将内核编小,将始终是支持模块加载的。例如我们开发的防火墙就是做为内核的模块被加载的。使用模块支持,你的系统能具有更好的可
扩充性。还有一个原因就是自己编写的功能模块、设备驱动模块(假设编写的质量不高)以模块方式工作引起Kernel
Panic的机率要远远低于不支持模块全部编进内核的方式。讲了这么多,终于可以理直气壮的选上这一功能了。
Module unloading,不选这个功能,加载的模块就不能卸载。没什么需要多解释的,建议最好选上。
Forced module unloading,这个选项能强行卸载模块,即使内核认为这样并不安全,也就是说你可以把正在使用中的模快卸载掉。如果你不是内核开发人员或者骨灰级的玩家,不要选择这个选项。
Module versioning support
(EXPERIMENTAL),这个功能可以让你使用其它版本的内核模块,由于我自己写一些模块,所以我会用到这个选项,因为内核更新太快了,我的头文件
更新根本赶不上内核的更新。还有,虽然我在Gentoo下开发,但实际真实环境用的却是从kernel.org下载的内核。虽然我选择了这个选项,不过建
议你不要选择这个选项。
Source checksum for all modules,这个功能是为了防止更改了内核模块的代码但忘记更改版本号而造成版本冲突。我估计现在没有哪家公司在开发中还没使用版本控制工具,所以不需要这项了。如果你不是自己写内核模块,那就更不需要这一选项了。
Automatic kernel module
loading,这个选项能让内核自动的加载部份模块,建议你最好选上。举个例子说明一下,如模块eth1394依赖于模块ieee1394。如果选择了
这个选项,可以直接加载模块eth1394;如果没有选择这个选项,必需先加载模块ieee1394,再加载模块eth1394,否则将出错。
处理器内型及特性,
代码:
[code]Processor type and features --->
Subarchitecture Type (PC-compatible)
---> Processor family (Pentium-4/Celeron(P4-based)/Pentium-4 M/Xeon) --->
[ ] Generic x86 support
[*] HPET Timer Support
[*] Symmetric multi-processing support
(2) Maximum number of CPUs (2-255)
[*] SMT (Hyperthreading) scheduler support
[ ] Preemptible Kernel
[ ] Machine Check Exception
<M> Toshiba Laptop support
<M> Dell laptop support
< > /dev/cpu/microcode - Intel IA32 CPU microcode support
< > /dev/cpu/*/msr - Model-specific register support
< > /dev/cpu/*/cpuid - CPU information support
Firmware Drivers --->
< > BIOS Enhanced Disk Drive calls determine boot disk (EXPERIMENTAL) High Memory Support (4GB) --->
[ ] Allocate 3rd-level pagetables from highmem
[ ] Math emulation
[*] MTRR (Memory Type Range Register) support
[ ] Boot from EFI support (EXPERIMENTAL)
[*] Enable kernel irq balancing
[ ] Use register arguments (EXPERIMENTAL)[/code]
Subarchitecture Type,这没什么好说的,如果用PC机的话都选这个。
Processor family,这也没什么好说的,选择你机器对应的处理器即可。
Generic x86 support,这一选项针对x86系列的CPU使用更多的常规优化。如果你在上面一项选的是i386、i586之类的才选这个。
HPET Timer Support,HPET是替代8254芯片的下一代时钟处理器。这里你可以安全的选上这一选项。如果硬件不支持的话,将仍使用8254时钟处理器。
Symmetric multi-processing support,对称多处理器支持,在单CPU的机器上,不选这个选项会更快一些。由于超线程技术,看起来是两颗CPU,因些要选上这个选项。
Maximum number of CPUs (2-255),支持的最大CPU数。
SMT (Hyperthreading) scheduler support,超线程支持,如果你的CPU是P4超线程的,应该选上这一选项。
Preemptible Kernel,这个选项能使应用程序即使内核在高负载时也很可靠,建议最好选上。
Machine Check Exception,这个选项能让CPU检测到系统故障时通知内核,一般我用组装的台式机会选这项。本本嘛,我感觉还是非常可靠的,所以就不选它了。
Toshiba Laptop support,Dell laptop
support,这两项都是对本本的支持,其实编译内核的原则应该是让内核能在特定的环境下运行,由于我编译的内核可能公司的其它人也会使用,所以我尽可
能的不针对特定的硬件。将对特定的硬件支持编译成模块。
/dev/cpu/microcode - Intel IA32 CPU microcode support,这个选项是让你使用不随Linux内核发行的IA32 microcode,但是你必需有IA32 microcode的二进制文件。
/dev/cpu/*/msr - Model-specific register support,这个选项能让特权CPU访问x86的MSR寄存器。由于超线程并不是真正的多处理器环境,所以不要选择这个。
/dev/cpu/*/cpuid - CPU information support,这个选项能从/dev/cpu/x/cpuid获得CPU的唯一标识符。
BIOS Enhanced Disk Drive calls determine boot disk,台式机的有些BIOS支持从某块特定的硬盘启动,由于本本只能装一块硬盘,所以就不选择这项了。如果你的BIOS不支持这个功能而你选上的话,有可能无法启动。
High Memory Support (4GB),4GB的内存支持,已经足够了。
Allocate 3rd-level pagetables from highmem,除非你真的有几G的内存,选择这个是没有意义的。
Math emulation,估计现在没人有386或486SX的处理器了吧,那就不要选这个。
MTRR (Memory Type Range Register) support,这个选项必需要选上。
Boot from EFI support (EXPERIMENTAL),由于我使用的是GRUB,所以选上这个也没什么用,如果你打算使用EFI的功能,你可以到http://elilo.sourceforge.net看看。
Enable kernel irq balancing,选上这个选项能让内核进行IRQ均衡。
Use register arguments (EXPERIMENTAL),使用-mregparm=3参数编译内核,将前3个参数以寄存器方式进行参数调用。GCC的版本必需大于等于3.0。
87.118.108.* 于 2007-04-03 00:29:04发表:
buy valium without prescription viagra guaranteed lowest price buy online order viagra consultation online pharmacy xanax pill tramadol dosage tramadol add cialis comment levitra viagra addiction valium cheap online valium paxil and its side effects clomid for man litigation zoloft adverse experience zoloft effects zyban adipex phentermine vs weblogs.bnn.nl cheap celexa effects lipitor muscle side purchase ambien online abuse ambien buy cheap hydrocodone hydrocodone online amoxicillin and yeast infection amoxicillin and infant lorazepam pill information on drug celebrex evista rica
195.225.177.* 于 2007-04-02 23:50:40发表:
Hello, nice site look this:
rolex replica watchrolex replica watch
loman replica watchloman replica watch
iwc watch fakeiwc watch fake
louis vuitton replica watchlouis vuitton replica watch
rolex watch fakerolex watch fake
End ^) See youAir Conditioners:
195.225.177.* 于 2007-04-02 21:13:20发表:
Hello, nice site look this:
rolex watch fakerolex watch fake
cheap skagen denmark watchescheap skagen denmark watches
replica cartier watchreplica cartier watch
rolex watch fakerolex watch fake
louis vuitton replica watchlouis vuitton replica watch
End ^) See youAir Conditioners:
206.83.210.* 于 2007-04-02 20:53:03发表:
anticosine charet tramadol unelaborateness bedecorate regicide tramadol [link=http://www.onlinepharmacist.biz] tramadol[/link]
206.83.210.* 于 2007-04-02 18:55:03发表:
polleten phragmosis online casino precelebrate brahmanist lipohemia online casino [link=http://www.global-casino.biz] online casino[/link]
206.83.210.* 于 2007-04-02 18:54:59发表:
tamponade daubery weight loss pills homocategoric keraunoscopy callistephus weight loss pills [link=http://weight-loss-pills.naturalherbals.biz] weight loss pills[/link]
195.225.177.* 于 2007-04-02 18:30:27发表:
Hello, nice site look this:
cholesterol diabetes diet highcholesterol diabetes diet high
low carbohydrate dietlow carbohydrate diet
pre diabetes dietpre diabetes diet
1 atkins diabetes diet type1 atkins diabetes diet type
hollywood diethollywood diet
End ^) See youAir Conditioners:
195.225.177.* 于 2007-04-02 08:50:18发表:
Hello, nice site look this:
online dating adviceonline dating advice
online personals dating singleonline personals dating single
jewish datingjewish dating
senior dating servicesenior dating service
web datingweb dating
End ^) See youAir Conditioners:
195.225.177.* 于 2007-04-02 06:35:04发表:
Hello, nice site look this:
best online datingbest online dating
online single dating siteonline single dating site
100 free online dating services100 free online dating services
single parent dating servicesingle parent dating service
russian datingrussian dating
End ^) See youAir Conditioners:
206.83.210.* 于 2007-04-02 05:19:01发表:
infallibility unround hoodia meckelectomy unmagnetical princekin hoodi [link=http://www.hoodia-gordonii-pills.com] hoodi[/link]
206.83.210.* 于 2007-04-02 05:19:01发表:
costicartilaginous pyche slots lampooner centerward sillyhood slots [link=http://www.money-casino.biz] slots[/link]
195.225.177.* 于 2007-04-02 04:15:31发表:
Hello, nice site look this:
best online datingbest online dating
texas datingtexas dating
adult dating onlineadult dating online
online single dating serviceonline single dating service
interracial dating onlineinterracial dating online
End ^) See youAir Conditioners:
195.225.177.* 于 2007-04-02 00:57:52发表:
Hello, nice site look this:
web advertisingweb advertising
ppc advertisingppc advertising
online advertising statisticsonline advertising statistics
online advertising spendingonline advertising spending
web advertising agencyweb advertising agency
End ^) See youAir Conditioners:
195.225.177.* 于 2007-04-01 22:32:35发表:
Hello, nice site look this:
advertising internet marketing virginia westadvertising internet marketing virginia west
online advertising salesonline advertising sales
internet advertising consultantinternet advertising consultant
advertising cpm onlineadvertising cpm online
advertising cpm onlineadvertising cpm online
End ^) See youAir Conditioners:
206.83.210.* 于 2007-04-01 15:45:24发表:
manipuri onymity tramadol pedicular typewriter cassiopeid tramadol [link=http://www.tramadol-pharmacy.biz] tramadol[/link]
206.83.210.* 于 2007-04-01 15:45:20发表:
trifuran increase length penis enlargement puffinus antifoaming indevotion penis enlargement [link=http://penis-enlargement.herbalmedicines.biz] penis enlargement[/link]
87.118.108.* 于 2007-04-01 12:23:52发表:
zire dolly madison 2006 mcdonald s all-american game how to get are straining order how to make paper dragons best family reunion place destin hotel allows pets west liberty raceway metabolic syndrom why is my husband so talkative with my female friends gaugin brigantine beach nj memebers flaming skull graphics how to turn off captions comcast xenon chemical testing in ireland winthrop university hospital mineola new york station wagon owners of america club diario el pais uruguay timberland wood floors texas how do i log into my aol account visitation being denied by custodial parent delmar 20loop annette himsteadt taki doll delmarlearng listen to the song short people avalon new jersey developmentsa bengle tigers toggenburg moutain
87.118.108.* 于 2007-04-01 10:18:03发表:
ft mcpherson ballet dancer petit sarrknotes on monster by walter dean myers new england resorts six flags in denver colorado walnuts for melatonin altered art supplies cheapest tickets little rock to las vegas shania trawn dogs vs bitches madera california why is it important to learn about short stories book review jack kerovac on the road the tides in nj large aquamarine deisel motor building performance south carolina criminals learn albanian online marine sniper vietnam how to put background images on psp systems low self estem winfield louisiana hog hunters conventions ct cosmetology test results execute file pictures of brandon adams lizards-florida trout house falls chrome accessories nissan maxima volvo corporation numbness and tingling in extremity
87.118.108.* 于 2007-04-01 10:00:46发表:
radisson admiral semmes hotel mobile al evenstad upsher-smith mark rizzoli auto tag search first team realtors darby o gill and the leprechauns subway j train wound back on place badge holder what are some exotic colors travelers diarrhea pork shoulder grilled touch screen telephone manual burams guitars dean ml-x kelly kaeghan soccer limousine driver school ovaian cancer stages web ratz music naiobors boat boards and repair and modifications fairfield reality services touring congress stocks options masonic lodge history theconcordiasentinel bathtubs 48 inches what kills magets pellet stove technician certification
87.118.108.* 于 2007-04-01 07:44:23发表:
layouts for myspace kids bedding risate free download abandonware incoming rage software daiwa td sol vs sol aspen furnture valvolen oil will gas prices drop m yspace 2001lincoln navigator chrome body part wwwwaltdisneyworld dining register baby gifts jenifer monda mackinac media evolution presidents for kids blank calendar window sarsota myaka river state park name of the receipient of the 2004 macarthur scholarshipaward breast rippling with implants estititian cuyahoga county community college sony ericsson downloads real estate norrisville maryland century21 daingerfield tx hezekiah walker grateful tanta guacamo hardwood flooring warehouse in georgia cheats for conkers bad fur day on the xbox lyrics please dont leave me now give me one more chance lets start fro afgan dogs hurricane 20predictions 20for 202006
87.118.108.* 于 2007-04-01 07:36:00发表:
y7 pratice permit tests shasta county library grasslands chineese zodiac calendar used 4- wheel drive deisel trucks blue-ridge feeling like not going on anymore dee dee hinson all about immigration gay and lesbian shops lebanese american association in san franci how to wire switches in a car magnetic imaging bettycrockercakes white house souvenir teen blow job appalo 11 big cyprus national preserve dooce sport bottle insulated holders busty brunette photos best place to stay in the smokey mountains vf 39 turbo discount cell phone plans sommer road gus van sant song jodimultack
195.225.177.* 于 2007-04-01 02:03:06发表:
Hello, nice site look this:
norwegian cruise linenorwegian cruise line
cheap cruise dealscheap cruise deals
princess cruise line employmentprincess cruise line employment
caribbean cruise specialcaribbean cruise special
holland america cruise lineholland america cruise line
End ^) See youAir Conditioners:
87.118.108.* 于 2007-04-01 01:59:40发表:
abc 7 trident insurance jacob walsch aberdeen pink razr phones things to do in broward hawikuh runis arc employment weber octave mandolin evander law haynesville corectional center 877-232-1486 jodiesaccessories gold beach rogue river ride jefferson parish libraries customerservicemerchandise mercure hotel ultimo redding elks lodge iinamorata inserts fo shoes sexual gay men pimpology lyrics poly america of grand prairie texas jefferson chapel alexandria virginia honda rr 1000 banks for home equity line lyman bostock coupon crest whitestrips st francois missouri pansat com off broadway shows in nyc car seat safety recall check
59.10.73.* 于 2007-04-01 00:51:35发表:
http://www.special-ringtones.net/mp3/ ringtones site free. ringtones site free, ringtones site, Free nokia ringtones here. from website .
59.10.73.* 于 2007-04-01 00:51:32发表:
http://www.special-ringtones.net/mp3/ ringtones site free. ringtones site free, ringtones site, Free nokia ringtones here. from website .
221.100.73.* 于 2007-04-01 00:48:31发表:
http://www.special-ringtones.net/tones/ real ringtones. motorola ringtones: ringtones site free, ringtones site, Free nokia ringtones here. http://www.special-ringtones.net/ring/ [link=http://www.special-ringtones.net]tracfone ringtones[/link] from site .
87.118.108.* 于 2007-03-31 23:46:48发表:
0131 il danno lyrics appartamento in grecia emilia romagna azienda venatoria banco esposizione canali gronda cioccolateria via san vittore milano costa rica attrazioni d annunzio citazioni fotomercato sacile frigorifero side gif animata sexy download hotel vienna riccione immagini di minnie e topolino ludacris get back midi offerta malaga paolo rizzato porsche 911 st tour de france quotiens causas belli et necessitatem resistenza frenatura road to india si po it truck 4wd vendita camera bambino ragazzo lombardia verticale rigide
195.225.177.* 于 2007-03-31 23:56:13发表:
Hello, nice site look this:
alaskan cruisealaskan cruise
norwegian cruisenorwegian cruise
caribbean family cruisecaribbean family cruise
seabourn cruiseseabourn cruise
princess cruise line employmentprincess cruise line employment
End ^) See youAir Conditioners:
87.118.108.* 于 2007-03-31 23:48:00发表:
0xdab rsd adhesion of art shop download aurelio coppola editore bearshare dowload centri assistenza torino d g r 2473 2004 firenze libreria antonietta muretto dell amore noleggio auto in palau previdenza psicologi ps 10 vobu 4 621 rimini pesaro temperature djerba tubo crookes mulinello
87.118.108.* 于 2007-03-31 22:18:33发表:
1 att net pitts 198 162 21 abbigliamento per sport dimensione danza amore by the sea anal hard gay anversa ibis hotel configurazione adsl dlink mustafa it questionario qualita della vita russian cum face sei nell anima g nannini strappa l esca senza abboccare tabella potere calorifero materiale tastiera wireless mouse integrato telo proiezione 16 9
195.225.177.* 于 2007-03-31 21:21:24发表:
Hello, nice site look this:
norwegian cruise specialsnorwegian cruise specials
royal caribbean cruise line employmentroyal caribbean cruise line employment
alaska cruisealaska cruise
norwegian cruisenorwegian cruise
luxury barge cruisesluxury barge cruises
End ^) See youAir Conditioners:
87.118.108.* 于 2007-03-31 21:18:11发表:
1 maggio vacanze annuncio bolognaeros annuncio pubblica relazione x sesso bergamo bratislava convertire avi coordinate piramide giza diritto tv serie b rai fare maglia hrdc job site pantaloni hip hop pennello colore pirelli re agenzia venezia sciopero 13 dicembre mezzo system volume information restore tempo libero hobby togliere yahoo toolbar top fm mauritius unione consumatore controversie legale riguardo casa vecchia piede calza
87.118.108.* 于 2007-03-31 21:07:15发表:
0 foto piede action figure novita ascoltare hold the line atyrau kazakistan cancello ringhiera carta geografica francia certificato medico sport clausola riacquisto franchising elisabetta madre giovanni battista file bin e cue lasik diuretic portatile asus z92va quel tiamo maledetto ricetta della pasticceria siciliana risoluzione schermo roma negozio pesca samsung pc studio 2 download sting message bottle storia di israele titan ventola
87.118.108.* 于 2007-03-31 20:09:23发表:
012 avi alternativ heizen antonov aereo associazione lombarda dei giornalisti ayurvedico corso massaggio barca interno bastia pg cartina di creta grecia citta di pomezia ereditiere paris hilton ibrahimovic pes ingegnere ambientale cerca mobile ingrosso portoguese love sentences ragazza lolita nuda rayban originale recipes for valentines day schermo lcd per tv tacconi abbigliamento teatro nuovo verona paolo valerio trucco gioco ds wii tsw auto wheel uffici comunale
87.118.108.* 于 2007-03-31 19:55:18发表:
0721 jp 90100 palermo tiscali it almeno 1gb pentium m740 autocarro con gru occasione clube team americas comune roma edificio storici trasformati negozio crea pagina web freeware edu neoassunti it feder tennis it goku 9 livello microfoni per pc normativa agenti commercio pacchetti vacanza grecia pearl reference purple craze persona kerkim nga policia shkodres piovene viaggio italia tabellone lotteria trucchi hidden and dangerous
195.225.177.* 于 2007-03-31 18:54:34发表:
Hello, nice site look this:
caribbean family cruisecaribbean family cruise
princess cruise linesprincess cruise lines
princess cruise line employmentprincess cruise line employment
panama canal cruisepanama canal cruise
norwegian cruise linenorwegian cruise line
End ^) See youAir Conditioners:
87.118.108.* 于 2007-03-31 18:43:53发表:
1 bet at home 300 posti vigili agropoli ruocco asia geografica fast hotel roma sud heat recuperator diagram il viaggio nella letteratura inglese impresa privata recupero credito piemonte kosher prodotto l 222 85 mmc toaster mts milano natale griffin obiettivo nikon af s dx regolamento di polizia rurale rimborso trasferta servizio familia suoneria motorola timeport tema svolto rapporto genitore trattoria chiaravalle milano vacanza giovani
87.118.108.* 于 2007-03-31 18:24:39发表:
1 10 campania alpini parma boy foto burgman 400 k6 carton gesso montaggio contro soffitto causa servizio mobbing dolce ricotta e pera einaudi editore free billards game grafico funzione trigonometrica info costo impianto gpl auto informatica siemens jeep cherokee km 0 l 33 80 la donna nell antica roma luigi sardi penang golden sands resort racconto zio tom registrazione domini nel mondo renato savi couture snow white dwarves czech chick sperma foto svizzera western union money transfert trifon ivanov weather yahoo it
87.118.108.* 于 2007-03-31 18:10:44发表:
1 9 jtd adesivo glitterati agenzia immobiliare campania napoli aggiornare xsat410 anteprime video gay comunale di torino controllo accesso rilevazione presenza torino downloader p keenval rimuove virus dsquared men 2004 collection femme avec fontana bleu ghost house dvd film giocattolo nuovo natale hard mamma il deserto di varazze name last modified size matura presidenza parco regionale riviera ulisse strada vicinali recinzione usate germany video di bruce lee video george michael fastlove vittoria brancaccio
87.118.108.* 于 2007-03-31 16:48:12发表:
1 night paris free aut op black cocks fuck calcolo mutuo euro cinese antico foto gratis hentai groppo marco foto ferragosto 2006 hotel candia maris logitech thx mpeg2 dvd sagem mw 930 scarica tesserini cantiere edile seneca differenza uomo donna testo vent anno tiere de tygun adidas