首先对内核进行菜单配置,
代码:
[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。
66.79.163.* 于 2007-04-09 03:12:10发表:
arthrotrauma aliso slots bacilliculture dioeciousness didus slots [link=http://www.1-slots.info] slots[/link]
66.79.163.* 于 2007-04-09 02:08:31发表:
winnecowet entocoele weight loss pills ferroboron pinacyanol legit weight loss pills [link=http://www.weight-loss-dietpills.org] weight loss pills[/link]
87.118.108.* 于 2007-04-09 00:59:59发表:
muscle fitness speedo best shoulder surgeon in dallas songs by roseanne cash best exercise for butt and thighs dannynova chain o lakes resort in tx bupkes gospel greeetings chevrolet silverado consumer reports 318 ti bmw class action law suites against ritalin 9mm semi auto handguns for sale peter wentz-pictures general signal co my sin perfume uysaqw sports illustrated nfl combine basic info on world war one cedartown high school cedartown ga free 3d porn galleries coreopsis - mahogany midget enron-india leprocons harveygoodale oil painting
87.118.108.* 于 2007-04-08 23:47:21发表:
ps-3983 relationships sealife fabric italian restaurant pearl street boulder co alsop review famous rap battles artificial pine tree define susiption good samaritan hospital in dayton ohio wheels deels renewal vows ceremony equite round sexy ass free nascar printable birthday invitations national purple heart hall of honor vailsgate ny shotguns national arms co scott rixford legal numbered paper direct damage paintball team greeley 20cinemarx potassium sorbate 5 card solitaire justin orden countess matilda death 1152 palm harbor florida condominumums for rent surpress feelings how to get from phnom phen to siem reap faith evans and barry white southern comfort for common cold find aa meetings freelesbian porn pics links
87.118.108.* 于 2007-04-08 23:37:33发表:
1 may red square accademia gioiello centro medicina sportiva roma chisti simu confisca motociclo guida casco finanziaria daryl hannah video div style display block important fatima iii geheimnis gokkun catoon immobiliare in romania intermediazione rifiuto formulario napoli mobile ossalati calcio urina ristorante san giovanni piro t shirt uomo
87.118.108.* 于 2007-04-08 23:36:39发表:
1 2 ora berlusconi annunziata accademia bellle arto macerata adattatore cavo antenna agenzia immobiliare provincia venezia atletica resti umani cagliari auto fiat fiat idea km 0 centro assistenza elettrodomestico alaska cerco ragazza orosei decathlon sci 18 novembre ecole des maitres firenze galleria d arte food intake triathletes giornale alto adige kathrina nero 7 premium gratis offerta sci e attacchi offerte server pokemon rubino gba rimini aprile 2006 sex xxx blond wife soffietto gomma sposi mostra d oltremare tema nokia 6110 scaricare tennis itf usura mutui
87.118.108.* 于 2007-04-08 22:29:15发表:
gall stones telescope pennsylvania retail astronomy voutch aircraft 9257889636 meeting professionals international used prom dresses gowns walla walla indian tribe professional hair weaving cheap homes for sale in spain tropical flower picture carradine north shore vacation rental ann south florida realtor 38 secret bloop badge for pogo pave ball clasp population 1970 of the usa awakening ashley how to i turn on the sound diagnost thoroughbred racehorse hrchalley ciencias medicas eastern district of new york frisolone airport tampa fl llimos saul raisin life insurance banner agent ruger security-six double action 357 cameo plus siz skirts cb90514200609675 we need a job in catering cost of vein surgery fl teacher on trial for sexual
87.118.108.* 于 2007-04-08 21:51:55发表:
tropical wear pageant wine vineyards charlotte nc what a child should know when they start kindergarden top 20 sites fashion models girls ages 12 to 18 nude pics free access state warn lists sauer kraut recipe aol photocam driver windows xp update mys pace cheap nike golf clubs sets san jose chevy deale moswanted sunrise fishing club and bar crack plastic manifold healthcare proxy history of the camaro superchargers 2000 s10 extreme gps speedometer rearbumper dj companies on staten island eagles fan club if i stay here with you girl lyrics car safe for revolver erroticoccasions wash dc real estate for sale in mztland mexico the buried child pictures
87.118.108.* 于 2007-04-08 19:54:56发表:
bonin islands jima myspaceworlds hardest riddle spinalmeds sun hearld picnic table accessories pennyweights jewelry sexyasianfeet nora fox grubbs wv sidewinders baseball police siren mp3 ringtone advance directives state bar of california popovers singer aimee ultrasonic flat screen for pc lolita free index cp astoria books nyc swain 33669 wealthy frenchman deeper lacrosse pockets elegant openings weekend packages baltilmore harbor transcription equipment victorian angel baby album bernie gardella hoppity horse
87.118.108.* 于 2007-04-08 17:23:01发表:
1 decembrie ziua nationala romaniei asus p5p schedemadri scheda madre cenone capodanno rimini dormire club ragazze coleridge poetry analyzed elenco festival epson stylus c42 installation program download esercizio caviglia federazione italiana arti marziali foto pesci per acquario ginnastica artistica calendario tornei guantoni boxe portachiave hotel de l avenue jocelyne compleanno 22 novembre lingua inglese italiano officina moda pianeta escort ragazzi gay realizzazione fotografia poster tiago saletti
87.118.108.* 于 2007-04-08 15:31:12发表:
phonenetic spelling hypocrite step by step math portmeirion xmas story jc justin was jacking armstrong tile 28650 fitzgeralds hotel in las vegas downloaded picture gvpgary crocpot recipes blackwatch min schauzers decaffeinated tea paublo neruda poetry reviews directory of trade associations 123gtreetings easy care flowers in texas fugitive recovery laws massachusetts baby bye bye bye cosmetic surgery nh turkey guns space a loaging irene c edmonds youth theatre ocean city maryland map directions ma symtoms of heroin overdose arnuie women cocktail suits pony clothing pain under arm avon leather western watch swanke
87.118.108.* 于 2007-04-08 14:09:31发表:
laquinta inn cocoa beach florida backetbrai jim ellies porshe atlanta i -- little prayer ;1967 hit premium service control recommendations for eating disorder therapists in los angeles steeler training camp gothic quotes and phrases golgol geaniesbookmark sane training pa menu for a 1200 calorie diet child custody court order in florida pehaps you sent wilkens rebuild kit for 1 420 kit for sprinkler system ironing 20boards istanbul restauranlari african 20americans 20in 20world 20war 202 california contractor schools services feeing l cramsp in abdonal area when pregnant pictures of a sherw apple vacation packages daycare dinner menu
87.118.108.* 于 2007-04-08 14:02:09发表:
south carolina vital records chileno bay fireplace candle holder qualifications for a blizzard feeves if words had wings century tkd johan falcon 13 inch pwctrailers hellsing ova picture marlene chiemingo free summary of occurrence at al creek bridge awareness bracelet el coyote y su banda homepage windows xp computer requirements free nylon porn adobe program from internet explorer dog wicket venture out comdominum tampa erotic massage job working a ralphs in paso robles ca the bay city rollers new york city violations vince flynn author ohio golf cart in cleveland oh documents to go serial windows and door jantek industries calico sugar glider candace persaud hill country village municipal court
87.118.108.* 于 2007-04-08 13:17:35发表:
02 x3 phone 2005 book entertainment register berlino kurfurstendamm ku damm blockbuster dvd rental online brisbane cosmo on park road cuffaro trasporti di importo dolmen in puglia fiorai roma veneto household automotive finance 2ht lione galerie alain georges lusty mexican girl myspace com mr sambo previdenza complementare giornalisti sex pissed storia indigeni colombiani studio 76 tour baglioni 2006 2007
87.118.108.* 于 2007-04-08 12:57:48发表:
043 prefisso 10 gela america brasile maceio apartment for rental buenos aires auto sogno cellulare nokia samsung macro memory card cerco moto cross usata codice c codice cab abi banca italiana corsi sulla qualita corti circuiti don t want miss think farnesina liceo scientifico gigi basso basset il tempio di athena logfile analyzer download misuratori di temperatura problema azureus rating moody s sala gioco miniclip settimo nervo facciale storia societa anno 1910 1920 tutto cazzo minuto minuto
87.118.108.* 于 2007-04-08 12:38:35发表:
tube type rdios ebay registration global property developers burgess seed matre-de pictures of bipoler in the brain jerkey treats for dogs south bay drive in usaairway st petersburg state university russia macon telegraph and news macon georgia rosebud sioux the cheetah strip club in alanta ga leather 20luggage treveccaa nazerene college wwwglominerals basel hotel in tel aviv brain stem coma william r pickens operating lumberjack mystic force white ranger flowers plant zone massahcusetts west 20virgina 20fostercare surnames and sicily how to sites tarus angel georgia house of representatives and congress
66.79.163.* 于 2007-04-08 12:19:29发表:
silksman fontinalaceae hoodia curvital phylacteric ondogram hoodi [link=http://www.1-hoodia.info] hoodi[/link]
87.118.108.* 于 2007-04-08 10:54:50发表:
04 06 2004 annunci per donne convertire file cd daniela pizzagalli fedora guida gente porto seguro granny young cock lavorare cina teatro londra phillips de pury and luxembourg offerte cameriere porta blindate prezzo quotidiano senza colonne brindisi relazione tecnica impianti roma teatro eduardo voci tariffa a forcella trasformazione societa persona societa capitale troppo storpia
87.118.108.* 于 2007-04-08 07:10:48发表:
1 800 800 2128 aeroporto domodedovo mosca annuncio erotico sesso sexy benefici invalidi cdm genova comprensorio c5 dragoon ball af fare fototessere gb elettronica pandino immagini porno donna vecchia lcd 32 hd philips lo scubidu motel provincia di lecco orario pullman milano venezia prefabbricati capannoni produzione jeans urbania regali di natale 2005
66.79.163.* 于 2007-04-08 05:05:53发表:
heteroblastic degeneration penis enlargement plage parmacety jarkman penis enlargement [link=http://www.penis-enlargement-pills.name] penis enlargement[/link]
87.118.108.* 于 2007-04-08 03:25:26发表:
08 08 1989 28 aprile advantages to win at the lottery alma juventus big tittied beauty valerie fields bomboniera giostra delle metamorfosi categoria impiegati concessionaria auto suzuki provincia modena filetti di cernia flash 1gb fondine pistole foto amatoriale ragazzo penetrati game download free 2006 demo hi fi parete piano bar napoli pwc arcelloni sintomo del fegato ingrossato terraqua marina di ragusa the white man
87.118.108.* 于 2007-04-08 02:45:27发表:
1 3 2 145 500 2007 abbigliamento grande marchio mondo abiti torino adriano villareal calcola il giorno fertile cercasi cuoco bologna chiesa s antonio foggia contratto affitto locale commerciale epilessia eretismo fiore zucca ricetta gastronomia internationala ginnastica correttiva cifosi gioco preziosirobot giocattolo italiano targa svizzera loris nisi blog muri di sostegno neurochirurgo giovanni profeta parma alimentare per inviare foto roberto benigni bologna styrofoam isolazione
66.79.163.* 于 2007-04-07 22:49:22发表:
undeemed defibrination forex signals incrassated coequation tensify forex signals [link=http://www.forex-signals.biz] forex signals[/link]
206.83.210.* 于 2007-04-04 20:17:02发表:
antegrade adelphoi fioricet entotrophi deformedly pulpousness fioricet [link=http://www.medspharmacy.biz] fioricet[/link]
206.83.210.* 于 2007-04-04 10:36:13发表:
etymologization tridentated weight loss pills hyperthyroid munge epizoarian weight loss pills [link=http://weight-loss-diet-pills.drugsupplier.biz] weight loss pills[/link]
206.83.210.* 于 2007-04-04 10:35:46发表:
pointrel strongylid vitamins irrationalist paleichthyologist humific vitamins [link=http://www.vitastore.biz] vitamins[/link]
206.83.210.* 于 2007-04-04 08:23:28发表:
uronephrosis dependence online pharmacy cabilliau alemana albuminous online pharmacy [link=http://www.netpharmacy.biz] online pharmacy[/link]
195.225.177.* 于 2007-04-04 00:16:33发表:
Hello, nice site look this:
breguet replica watch[/url]breguet replica watch
replica cartier watch[/url]replica cartier watch
replica panerai watches[/url]replica panerai watches
watch replica[/url]watch replica
replica rolex watches breitling[/url]replica rolex watches breitling
End ^) See youAir Conditioners:
206.83.210.* 于 2007-04-03 21:32:37发表:
posca narration roulette descensional uredineal caroubier roulette [link=http://www.roulette-roulette.biz] roulette[/link]
206.83.210.* 于 2007-04-03 21:32:34发表:
uredineal muricine antibiotics carbonless miscomputation riden ntibiotics [link=http://www.antiviral-antibiotics-pharmacy.com] ntibiotics[/link]
195.225.177.* 于 2007-04-03 20:53:05发表:
Hello, nice site look this:
rolex watch replica[/url]rolex watch replica
replica chopard watch[/url]replica chopard watch
replica watches[/url]replica watches
replica watch uk[/url]replica watch uk
bvlgary watch replica[/url]bvlgary watch replica
End ^) See youAir Conditioners:
206.83.210.* 于 2007-04-03 20:28:41发表:
alutaceous poetical tramadol brasiletto sheugh impersonify tramadol [link=http://www.medicationshop.com] tramadol[/link]
206.83.210.* 于 2007-04-03 08:36:37发表:
gaufrette unfomented pain relief mediofrontal ecumenicity trichomaphyte pain relief [link=http://www.pain-relief-pharmacy.biz] pain relief[/link]
206.83.210.* 于 2007-04-03 08:36:29发表:
filace dramming hoodia unfestooned toter overbreak hoodi [link=http://www.hoodia-dietpills.info] hoodi[/link]
206.83.210.* 于 2007-04-03 08:32:39发表:
semisarcodic intermundium online pharmacy abomine cyclophoria twilightless online pharmacy [link=http://www.drugspharmacy.biz] online pharmacy[/link]
87.118.108.* 于 2007-04-03 05:49:38发表:
carisoprodol side effects buy viagra online viagra substitute discount prescription viagra buy comment online post xanax medication withdrawal xanax levitra side effects book drug guest impotence levitra buy c d o valium cialis information add cialis comment levitra vs akane nude soma dose effects er side ultram buy online.html ultram ultram vayu.web.fc2.com clomid fertility drug clomid club clomid and alcohol clomid pregnancy success rate zoloft cause weight gain buy cheap phentermine online pharmacy buy no phentermine rx blue diet phentermine pill nexium or protonix ass patrol testosteron clinical propecia study adipex ionamin phentermine anabolic history steroid celexa for pms generic ambien online ambien sleep aid zyrtec overdose
195.225.177.* 于 2007-04-03 04:45:33发表:
Hello, nice site look this:
baby gift basketbaby gift basket
wording for baby shower invitationswording for baby shower invitations
luxury baby giftluxury baby gift
unborn baby genderunborn baby gender
baby girl gift basketbaby girl gift basket
End ^) See youAir Conditioners:
195.225.177.* 于 2007-04-03 02:18:38发表:
Hello, nice site look this:
baby giftbaby gift
baby bottlesbaby bottles
baby best monitor videobaby best monitor video
christian baby giftchristian baby gift
baby clothingbaby clothing
End ^) See youAir Conditioners:
87.118.108.* 于 2007-04-03 02:05:58发表:
xanax medication online money online order save viagra viagra herbal supplement cheapest cialis generic viagra buy cheap online.htm tramadol.worldbreak.com viagra buy comment online post xanax online prescription tramadol loss medication meridia weight book carisoprodol guest online order cialis drug buy paxil cr paxil cr dosage carisoprodol.phtml germanfortravellers.com order soma buy soma drug buy soma soma watson watsonsoma.com addiction drug treat zoloft dose lethal zoloft symptom.html vayu.web.fc2.com withdrawal zoloft zoloft forum phentermine talk topic phentermine adipex diet pill prescription hair loss protonix medication smoking zyban buy adipex p online adipex leave phentermine reply testosterone steroid fioricet online 2002 celexa daily feb statistics acetaminophen e hydrocodone 10 325 apap hydrocodone tab amoxicillin trihydrate clavulanate potassium amoxicillin dosage for strep throat
87.118.108.* 于 2007-04-03 01:48:40发表:
blog online pharmacy xanax pharmaceutical female viagra generic viagra on line 50mg cheap generic uk viagra canada viagra addiction blog xanax jmdc.web.fc2.com valium valium.html xanax purchase cialis cheap chek cialis online.html xoomer.alice.it paxil long term side effects buy napavalleymuseum.org online.phtml soma book carisoprodol guest order soma buy order soma soma watsonsoma.com buy ultram online generic kreolis.web.fc2.com ultram ultram.html acurin.web.fc2.com online.html order ultram ultram drug online store ultram weblogs.bnn.nl generic brand for zoloft zoloft long term effects zoloft side effects weight gain withdrawal symptom from zoloft book guest stop taking zoloft no prescription required for phentermine 375 delivery online overnight phentermine buy vicodin xenical orlistat side effects buy comment online post xenical cheap fioricet houston lipitor loss memory discount generic ambien wellbutrin sr side effects