首先对内核进行菜单配置,
代码:
[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。
0.0.0.* 于 2007-08-08 04:05:24发表:
sotto la gonna
pornoitalia com
passere lesbiche
pompini a pesaro
cazzi duri gay
tutto fighe
film sex gratis
schemi uncinetto
mariti cornuti
vagina sfondata
0.0.0.* 于 2007-08-08 03:11:03发表:
mogli cornuti
culi grandi
mistress torino
maiale mamme
creare temi nokia 5200
foto ermafroditi
soli tribali
tabella assegno nucleo familiare
fighe casalinghe
troie ungheresi
0.0.0.* 于 2007-08-06 07:52:13发表:
crosta terrestre
zoccole e puttane
melita toniolo porno
bellezze vip nude
sborra video free
donne eccitanti
foto donne ciccione
video di stupri
cartoon xxx
canalis porn
0.0.0.* 于 2007-08-06 02:06:04发表:
goku sex
uomini negri nudi
filmati sexi gratis
esempio di lettera dimissioni
auto incidentate
piscina prefabbricata
contatti msn di porche
diavolita foto
mermaid melody puntate
tagli capelli donna
0.0.0.* 于 2007-08-05 05:23:30发表:
escort ivrea
puttane troie
composizioni floreali
sex melita
guida smeraldo
annunci trans roma
ragazza figa
foto cazzi nudi
facce sborrate
piscina bacone milano
0.0.0.* 于 2007-08-05 00:26:39发表:
fighe scopate
porno animal
porno animali gratuito
chiavate porno
fumetti incesto
elenco pornostar
porno gay neri
manga gay
pornostar nere
modello dimissioni
0.0.0.* 于 2007-08-04 21:15:12发表:
video gratis 5 minuti anteprima
spiegazione dei sogni
porno animal gratis
cosce aperte
casette in legno
confessioni porno
donna cicciona
puttane nude
vecchie pornostar
puttane bionde
0.0.0.* 于 2007-08-04 16:11:18发表:
melita foto sexy calendario
traduttore latino
piedi melita
ragazze porche gratis
cani che fanno sesso
tette giapponesi
www super eva it
goku 5
cazzi neri fighe bianche
immagini fantasy
0.0.0.* 于 2007-08-04 15:16:25发表:
fica scopata
fighe leccate
ranma nuda
contatti di msn ragazze vogliose
alessio e raffaello
tempesta d amore
manga porno
pompini sperma
mamme scopano con figli
dragomball z
0.0.0.* 于 2007-08-04 15:16:22发表:
fica scopata
fighe leccate
ranma nuda
contatti di msn ragazze vogliose
alessio e raffaello
tempesta d amore
manga porno
pompini sperma
mamme scopano con figli
dragomball z
201.8.121.* 于 2007-07-24 21:29:54发表:
4c33d7a7080e270048770490a9124104 http://casellario-autostradale.tzlnou.biz/ http://omelia-del-papa.ygvhik.biz/ http://preavviso-licenziamento-apprendista.iuatju.biz/ http://ugo-foscolo-a-zacinto.tzlnou.biz/ http://prezzo-parete-legno.zibtye.biz/ http://tatuaggi-serpenti.iuatju.biz/ http://sessa-dorado-22.enadzh.biz/ http://giochi-freeware-per-pocket-pc.tzlnou.biz/ http://madonnina-ricciolo-d-oro.ppdpwx.biz/ http://prive-in-puglia.zibtye.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
190.16.183.* 于 2007-07-23 11:56:36发表:
47c16881f3188ee541797d5c15069d98 http://marco-lanzi-bologna.cqhnnx.org/ http://ingresso-pamphili.vywyuh.org/ http://legge-n-146-1990.pvaeyo.org/ http://rsa-san-raffaele.cqhnnx.org/ http://hotel-pineta-ponte.mnkcbe.org/ http://parco-siciliano.cqhnnx.org/ http://gianfranco-fini-sito.vywyuh.org/ http://sex-guida-martinica.gbdrme.org/ http://autostrada-salerno-reggio-calabria.jnbwct.org/ http://superman-return-locandina.vywyuh.org/ eb89aa2351bfb8dd061b0dc25061dcdb
67.86.65.* 于 2007-07-22 01:16:50发表:
http://www.ksepb.gov.tw/exchange/disscuss/view_down.asp?aclass=A&board_id=649&post_id=2507 link link
81.192.168.* 于 2007-07-20 19:45:04发表:
f678354edb19ae1d684f3bfc407c09d9 http://indirizziutili.qemqrg.org/scheda-madre-p4-socket-478/ http://cosafarecapodannomilano.nfnzro.org/allevamento-beagle-catania/ http://lavorosubito.pykkxx.org/la-magia-del-lupo/ http://clubaironeelba.cerfmd.org/elenco-clinica-pavia/ http://borsonidimensionedanza.rozdha.org/liste-e-candidati-elezioni/ http://allenamentiinter.pykkxx.org/baita-capodanno-piemonte/ http://circolareministerialen8.pykkxx.org/abbigliamento-sportivo-torino-fc/ http://fotosingapore.kprskz.org/principio-dio-creo-cielo-terra/ http://sfondiacoloripermotorola.kcqdnd.org/aksi-kinesiologia/ http://cercofurgonedoppiacabina.ghoouy.org/abito-ballo-latino-americano/ b8fb7d84153cc5c69600cbe1497734b2
88.80.126.* 于 2007-07-20 18:49:17发表:
http://www.ksepb.gov.tw/exchange/disscuss/view_down.asp?aclass=A&board_id=649&post_id=2477 link link
http://www.ksepb.gov.tw/exchange/disscuss/view_down.asp?aclass=A&board_id=649&post_id=2478 link link
http://www.ksepb.gov.tw/exchange/disscuss/view_down.asp?aclass=A&board_id=649&post_id=2479 link link
http://www.ksepb.gov.tw/exchange/disscuss/view_down.asp?aclass=A&board_id=649&post_id=2476 link link
http://www.ksepb.gov.tw/exchange/disscuss/view_down.asp?aclass=A&board_id=649&post_id=2475 link link
59.7.39.* 于 2007-07-19 10:31:57发表:
b984af11d15cd5aa82ce7323b901bc07 http://colmar-abbigliamento.licoxi.in/ http://forme-mercato.jnesky.in/ http://mondo-angelo-custodi.kmyeyh.com/ http://franco-ciambella-azienda.licoxi.in/ http://corsi-di-infermiere.kmyeyh.com/ http://eta-pensionabile.jnesky.in/ http://poltrona-antica-mobile-antico.kmyeyh.com/ http://corso-linguaggio-cinema-roma.bkqryo.com/ http://scatti-rubati-sotto-gonna.vbglda.com/ http://malattia-del-cervello.licoxi.in/ b8a12f78e2ab8d9c8e5e94f78e975725
89.137.48.* 于 2007-07-17 22:29:35发表:
3056bcb267917cd51c5254296246b5d0 http://sportivopneumaticoassetti.copdkj.org/testo-di-pull-me-under/ http://bugiaeffettoserra.wfdklb.org/bulloni-uni/ http://ragazzanapoletanechat.cdvduz.org/mutazioni-founder/ http://salernodomenica.vniybd.org/mobile-antico-firenze/ http://romateatrotordinona.cdvduz.org/terrorismo-iraq/ http://nasconderenumerotim.ppnxyq.org/carelli-bicicletta/ http://liguriacenonecapodanno.ppnxyq.org/giornale-condominio/ http://vacanzabenessererioloterme.lgyeas.org/piergiorgio-valbonetti/ http://detrazioneasilo.ppnxyq.org/piano-nazionale-cinema-irre/ http://drawingcemeterymodenabyaldorosso.wfdklb.org/viaggi-ascoli-piceno/ 8ea4fcdde1a965ef95e68187f350c6f6
218.51.130.* 于 2007-07-17 15:44:21发表:
http://03e27f4b0702d00043d13c5e7ecb13f8-t.xkktxb.org 03e27f4b0702d00043d13c5e7ecb13f8 http://03e27f4b0702d00043d13c5e7ecb13f8-b1.xkktxb.org 03e27f4b0702d00043d13c5e7ecb13f8 http://03e27f4b0702d00043d13c5e7ecb13f8-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
218.149.126.* 于 2007-07-16 13:35:06发表:
bf0247f326bd67fd4a77a34b335866c7 http://industria-bevanda-italia-industria-bevanda-1988.xmjviq.com/ http://palazzo-roccelli-napoli.wdexfm.biz/ http://gozzo-thyroid-tiroide.gvjcaf.com/ http://modello-rilascio-licenza-luna-park.ynpojb.biz/ http://nuovi-tagli-capelli.xmjviq.com/ http://foto-di-trans.fuypfr.biz/ http://bigliettini-per-bomboniera.fuypfr.biz/ http://gnocca-trombare.jmncsw.biz/ http://parlare-il-russo.gwedas.com/ http://farmacie-di-turno-a-venezia.ywowql.com/ 8cff813cd5cdf93d908a9e43c4704dad
213.112.155.* 于 2007-07-15 05:42:59发表:
6e004f9ca0496e9518966fd6476eb5e8 http://portascomparsascorrevole.jlmwbv.org/fotografia-nudo-uomo-gratis/ http://autoricaricaconsms.mqyawz.org/maglione-renna/ http://granfondocicloit.tvmowd.org/massimo-ranieri-rai-gennaio-2007/ http://operaaeroportuali.mqyawz.org/scheda-pci-ide/ http://pullmanromabari.jlmwbv.org/giochi-sailor-moon/ http://itinerariopuglia.vozulo.org/teatro-eden/ http://viaggiocampoconcentramento.tvmowd.org/maso-corradini-it/ http://flliagnesrovescala.gapphu.org/pesaro-lavoro/ http://campoesperienzacenerentola.gapphu.org/cerco-appartamento-milano-zona-centro/ http://immumilintegratorevitamina.havjsk.org/verde-rimini/ a875aa102e91579b074fe29fa7a13e81
201.208.17.* 于 2007-07-13 22:30:45发表:
4f45539a41b8c22d431e0e6ca9543fe1 http://hotel-bijou-forte.lvqits.org/ http://fabri-fibra-tradimento-megaupload.lvqits.org/ http://museo-tancredi.lldpzx.org/ http://t-max-usato.mpxxqr.org/ http://sanpio-eu.ubetii.org/ http://mascia-ferro-tatuaggio.ubetii.org/ http://trucco-pc-scar.iwfpha.org/ http://31-dicembre-2006-suoneranno-roma.gazdtl.org/ http://volo-economico-capodanno-barcellona.iwfpha.org/ http://gioco-scommessa-calcio.ubetii.org/ 8c2a5fabd273020cebfaea52010ee4bb
82.117.219.* 于 2007-07-12 18:12:20发表:
http://oasis.secna.ru/~ritm/wwwboard/messages/3392.html Preteen Models Porn Sex Pics Preteen Models Porn Sex Pics
http://oasis.secna.ru/~ritm/wwwboard/messages/3396.html Preteen BBS Stories Movies TGP Preteen BBS Stories Movies TGP
http://oasis.secna.ru/~ritm/wwwboard/messages/3404.html Pedo Models Porn Sex Pics Pedo Models Porn Sex Pics
http://oasis.secna.ru/~ritm/wwwboard/messages/3406.html Pedo BBS Stories Movies TGP Pedo BBS Stories Movies TGP
83.213.88.* 于 2007-07-12 15:48:10发表:
853bc3742a8222ecd4c47ff5203f5e08 http://provino-hard-umbria.xxfvsr.org/ http://modulistica-tribunale.gbymyg.org/ http://equiparazione-diploma.rtistm.org/ http://numeri-di-telefono-fisso.uwlbfm.org/ http://visita-paestum.yorcfb.org/ http://donna-tettona-bionda.udzjxi.org/ http://portoncini-blindati.gbymyg.org/ http://bambini-latte.qpjnvy.org/ http://dumper-cingolati.udzjxi.org/ http://nastri-adesivi-personalizzati.jdcyvo.org/ d8d97f68bc274489b372d34e17b3a169
201.78.239.* 于 2007-07-11 08:45:45发表:
5fa8f1f044f8606f9d3a1c5aa08c1e6e http://2.ska4aj.org/pagina94.html http://19.ska4aj.com/pagina61.html http://17.ska4aj.com/pagina46.html http://9.ska4aj.net/pagina54.html http://7.skachaj.org/pagina98.html http://23.skachaj.org/pagina04.html http://16.ska4aj.net/pagina46.html http://3.ska4aj.net/pagina07.html http://10.ska4aj.org/pagina72.html http://1.ska4aj.com/pagina26.html 53f688e2d0ae01a48f96ad8f8181d4f6
201.248.205.* 于 2007-07-09 23:53:19发表:
251bb66403664ed7757e6ee592e2b76a http://fondo-previdenza-complementare-socrate.dkzfpf.org/ http://fondazione-alternativa-remo-brindisi.atersl.org/ http://riposo-notturno.bsvetd.org/ http://209129-studente-unito-it.wywplu.org/ http://vallelunga-aci.gtimmg.org/ http://crema-rassodante-seno-language-it.bsvetd.org/ http://aragosta-al-gratin.fyicly.org/ http://url-ostacoli-cuore.uvrseh.org/ http://cronaca-crotone.fyicly.org/ http://d-lgs-18-febbraio-2005.uvrseh.org/ 9b45a0bdde2cb75e21785d72ae4741f7
123.214.200.* 于 2007-07-08 14:23:00发表:
8cf28db74dc01f76d1e4f41fc477cd5a http://aspetto-pc.zgqwur.org/ http://foto-donna-negra-vagina-fuori.wdhffe.org/ http://ristorante-a-sciacca.wdhffe.org/ http://neve-bergamo.djrtlt.org/ http://cartapoliticacampania.awcnfe.org/natale-ungaretti-poesia/ http://fondobottebirra.ikwuex.org/foto-gnocca-matura/ http://vorreimanonsodirlo.sphfph.org/campo-mulo/ http://pizza-party-bennato-testo-scaricare.zgqwur.org/ http://volibucarestbari.sphfph.org/soldier-of-fortuna-macos-demo/ http://sicilia-case-vacanze.djrtlt.org/ cda9cd96507def8918671c23330ec82a
190.72.7.* 于 2007-07-07 08:24:20发表:
a18063df6971f838436fd98ef26dd2fc http://ragazza-sex-tutto-gratis.xxbtpu.org/ http://accordo-art-7-scuola.vtjfdr.org/ http://immagini-per-windows-xp.zikywm.org/ http://orafi-incisori.zikywm.org/ http://scala-regia-vaticano.zikywm.org/ http://delibera-04-2005.mcgzbb.org/ http://racconto-erotico-confessione.bubajm.org/ http://giuliogiorello.eoklgx.org/nucleo-valutazione-personale-pubblica-amministrazione/ http://www-economia-unile-it.vtjfdr.org/ http://t-shirt-roberto-cavallo-uomo.mcgzbb.org/ 268af5f4294519a6b3a74dbb7c6fdf14
89.178.182.* 于 2007-07-03 23:03:03发表:
The greatest site, there are some usefull information free amateur gay movie | free amateur gay movie
89.178.127.* 于 2007-07-03 17:33:14发表:
The greatest site, there are some usefull information voyeur pissing movies | voyeur pissing video
70.45.65.* 于 2007-07-02 09:45:51发表:
cf6b666978970eaddd5b548e8da3f39f http://hotel-marina-di-campo-elba.dtifhu.org.in/ http://liceo-aldo-moro-reggio-emilia.pifljm.org.in/ http://campionato-serie-c-play-off.mksqkw.org.in/ http://universita-di-economia-a-parma.innltr.org.in/ http://testo-grande-grande-grande-mina.qttkja.org.in/ http://banca-borsa-e-titoli-di-credit.mksqkw.org.in/ http://storia-nascita-stati-europeo-trecento-quattrocento.omulsq.org.in/ http://harry-potter-l-ordine-della-fenice.pifljm.org.in/ http://cura-balneo-termale-anno-2004-calendario.qttkja.org.in/ http://istituto-clinico-s-rita-milano.dtifhu.org.in/ 8a848390101f52442387e8806988b168
83.23.183.* 于 2007-07-01 05:35:05发表:
670ede8b28f47b8c282425666af91857 http://www.perizomalycraparteposteriorey.jfjurx.org/ http://www.malattiagenetichecuginosecondogrado.ocuokj.org/ http://programmapertrasformaredivxindvd.gdedkb.org/ http://sbloccoirdadelllgu8180.tgydoj.org/ http://determinazioniautoritavigilanzalavorolavoropubblico.ocuokj.org/ http://www.illeoneelalepre.gdedkb.org/ http://www.centroserviziofinanziariogroupsrl.pyvila.org/ http://www.canzoneiocantolaurapausini.tgydoj.org/ http://www.sicurezzalavorowwwmarcheimpresanet.hrjksn.org/ http://baldursgatedarkalliance2soluzione.zawphd.org/ 246f5573f09449eb624440463d221fca
190.51.1.* 于 2007-06-30 02:31:45发表:
cd38b6d9483e0c6c052d99351a23e6a7 http://detrazioneiciforzaarmatapolizia.uytput.org/corsa-uisp-prato-firenze-pistoia/ http://cato-sextum-et-octogesimum-valerio.utpiii.org/ http://video-anteprima-incontro-sesso-uomo.msjbrf.org/ http://dichiarazionesgravial36edilizia.uytput.org/compensi-agli-avvocato-risarcimento-assicurativo/ http://lotosocietacooperativasocialeonlus.uytput.org/roma-bomboniera-ingrosso-roma-bomboniera-ingrosso/ http://testocanzonehigtschoolmusical.uytput.org/leggi-regione-campania-rifornimento-carburante/ http://blue-tooth-ae-hf850-vivavoce-cellulare.chohld.org/ http://cerco-fornitore-abbigliamento-yell-industry.utpiii.org/ http://20dicembre1975n79.zcsdiw.org/aldo-giovanni-giacomo-spettacolo-roma/ http://novita-trattamento-termico-dei-metallo.utpiii.org/ 242a24eaaf2d8b6d338dfc62711422de
200.176.192.* 于 2007-06-29 01:54:14发表:
5044347b13619cfdd55d5452fd78f4a0 http://annuncioparticolarigratispersonaliincontri.aklifa.org/programma-mettere-sottotitolo-neo-video/ http://cin-europeo-banca-roma-guidonia.qkidvr.org/ http://consiglionazionaleingegneriearchitetto.hwdwav.org/suoneria-gratis-colonna-sonore-film-western/ http://motorizzazione-civile-milano-via-cilea-tel.gpzeve.org/ http://s-maria-maggiore-11-dicembre.meoprr.org/ http://azienda-sanitaria-locale-rm-h.qkidvr.org/ http://biologiaedecologiasuolotecnicaricerca.bcpmpo.org/stato-maggiore-aviazione-dell-esercito/ http://site-www-fowa-it-zeiss.csirgp.org/ http://fiat-corso-giulio-cesare-torino.csirgp.org/ http://linea-guida-piano-sviluppo-rurale.jmcomw.org/ 24974b376644b5034250f73cecc2d1d6
190.38.144.* 于 2007-06-27 22:16:23发表:
7b76e1e3b443f5a97e861037047b5766 http://foto-di-alexis-bledel-nuda.udzkxj.org/ http://campionato-mondiale-di-calcio-1982.ajqecx.org/ http://affitto-casa-o-appartamento-passo-corese.nzwrmb.org/ http://vacanza-all-isola-dei-gabbiano-astrid.nzwrmb.org/ http://legge-82-25-01-1994.avypou.org/ http://banca-nazionale-del-lavoro-agenzie.jojues.org/ http://corso-istruttore-body-building-fitness-cono.fhbwem.org/ http://orlandi-luciano-elenco-telecom-rapallo-ge.gmgjeu.org/ http://decreto-bersani-dl-223-2006.tkanof.org/ http://film-barbie-12-principessa-canzone.xzpkti.org/ dff758ad4d024eb641677108bbbbea97
89.178.167.* 于 2007-06-27 18:35:38发表:
Good work hairy pussy video , hairy pussy video
200.44.219.* 于 2007-06-26 20:19:58发表:
a86b7cc1eb44fc393c679c1a79d707b5 http://manuale-anpa-metodo-analisi-compost.filgvg.org/ http://contrattopreliminaredivenditaimmobiliare.olskny.org/versione-ulisse-polifemo-supplica-dell-eroe/ http://iscrizione-ditta-fiducia-comune-castellammare-golfo.taryvn.org/ http://fareclicattivarecontrolloutilizzareplaceholder.olskny.org/programma-installare-sistema-operativo-palmare/ http://copertinadvdeduardodefilippo.mjdrvf.org/cobas-palermo-sciopero-22-novembre-2006/ http://gestione-dell-innovazione-schilling-m.ozetoz.org/ http://controller-5-asso-basso-costo.ynkpgu.org/ http://trucco-age-of-empire-1.filgvg.org/ http://campionati-italiani-assoluti-di-nuoto.ynkpgu.org/ http://variabilidisessioneaspnet.mutsoq.org/video-sole-settembre-dei-finley/ ac74524788537f28ae4c90c357df5e97
87.118.108.* 于 2007-06-26 02:26:17发表:
lesbian free sex cam / mirros.yourtakeone.org anal mpeg teen small teen bra nsync erotica retro lingery erotica sex blog voyeur jessicas lesbian playground chat hardcore junkies room anal reality porn site best blog gay porn dirty chicken porn lightning maureen mccormick nude texas nude sex chat ford models los angeles anne hathaway sex hardcore indian sex picture
87.118.108.* 于 2007-06-26 02:20:45发表:
strong women stay young dvd / rotor.yourtakeone.org in job pittsburgh teen man older porn teen media teen girls panty teen movies teen outreach free lesbian preview sex anal wronger free hardcore hogtied best lesbian porn site girl on girl porn sheer bra fetish thomas the tank engine models cat sex pic contacto queretaro sexo deformation radiation sexual
87.118.108.* 于 2007-06-26 02:12:47发表:
fuck her tits then in the ass / metd.wildlisting.org ass big fuck teen teen cleavage teen party dress jaimy porn porn sesso gratis video beautiful big nude woman against homosexuals caravan sale static sussex free site old and young sex gay pic sex world sex filmes sexy and funny sms beach girl topless young boobe and the young farmer young angelina jolie pics
87.118.108.* 于 2007-06-26 01:44:48发表:
mature sexy sucking woman / dst.wildlisting.org how to start your own business for teen i want candy lyrics aqua teen tawnee stone lesbian pics bilder boat canal aishwarya rai a porn star male porn model mature women big tits perky tan tits anna faris nude free gay nude male intense sex positions sex and more sex cosplay lesbian lick pretty pussy young lesbian picture