首先对内核进行菜单配置,
代码:
[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-18 23:11:55发表:
information on xanax medication buy cialis viagra buy cheap purchase uk viagra viagra drug zenegra addiction blog xanax jmdc.web.fc2.com valium valium.html xanax tramadol generic ultram tramadol hcl 50mg drug jmdc.web.fc2.com meridia meridia.html meridia weight loss drug add cialis comment levitra viagra liquid cialis drug prescription ultram ultram without a prescription progesterone level on clomid drug diflucan zoloft child zoloft long term effects zoloft liver damage zoloft side effects weight purchase tenuate lowest price phentermine drug hcl in phentermine diet hcl phentermine pill order vicodin without prescription adipex p 37.5 mg steroid testing in baseball baseball era site steroid thesteroidera.blogspot.com buy cheap fioricet online lipitor and pregnancy lipitor serious side effects
66.79.163.* 于 2007-04-18 22:03:41发表:
anticipatorily monkery diet pills cytoderm squaliform neurenteric diet pills [link=http://www.diet-pills-pharmacy.info] diet pills[/link]
87.118.108.* 于 2007-04-18 20:54:45发表:
cialis levitra viagra vs viagra supplier caverta cheap cialis generic viagra blog sale viagra order viagra on line hillcrest hospital meridia generic soft cialis cheap cr paxil buy soma drug buy zoloft drug phentermine doctor online phentermine 37.5mg no phentermine prescription canine medication proscar gold protonix cheapest propecia online buy adipex p online didrex steroid use in teen cheap ambien online allegra together used zyrtec buy hydrocodone line drug side effects hydrocodone gain lexapro medication weight free increase testosterone encyclopedia steroid testosterone testosterone hormone
87.118.108.* 于 2007-04-18 18:22:31发表:
comment leave valium xanax online sales viagra blog cialis levitra viagra buy cheap online uk viagra viagra best buy buy hydrochloride.com tramadol tramadol tramadol purchase meridia online abuse carisoprodol aaicorp.com buy carisoprodol cod.dhtml online book carisoprodol discount guest prince valium buy valium without prescription cialis levitra vs effects paxil side symptom withdrawal soma carisoprodol order soma soma watson watsonsoma.com tramadol ultram bian.in generic persik ultram ultram.html medicine pain ultram clomid robitussin clomid chat damage effects side zoloft zoloft vs generic buy prescription vicodin without vicodin online no prescription propak propecia discount propecia order propecia propecia.html wmwn.web.fc2.com adipex rx online cheap online xenical jroller.com page xenical
87.118.108.* 于 2007-04-18 18:16:11发表:
online order ordertramadol.net tramadol tramadol buying online risk viagra buy viagra online get prescription book discount guest sale viagra buy in online uk viagra tramadol hcl 50 mg tab cialis comment levitra post viagra cialis jinx.in online.html rachelchri cialis cialis discount generic.html texasacet.org paxil cr dosage taking wellbutrin with zoloft book guest info zoloft where to order phentermine online phentermine no prescription phentermine diet pill message board buy phentermine online pharmacy buy cheap propecia canada online pharmacy propecia bontril plegine cheap bontril online adipex meridia phentermine xenical xenical slimming tablet athlete using steroid lipitor versus pravachol bextra celebrex vioxx new jersey celebrex vs vioxx clonazepam testing urine how to raise testosterone level free testosterone level norco drug
87.118.108.* 于 2007-04-18 15:42:32发表:
drug information tramadol where to buy viagra cheapest place buy viagra online online onlinepharmacy.tv pharmacy viagra buy cheapest viagra jmdc.web.fc2.com valium valium.html xanax mtsa.edu order q read.php xanax effects of xanax on pregnancy online doctor valium price street valium cialis comment levitra post vs 12.5 cr mg paxil cr paxil paxil behavior problem zoloft zoloft sertraline hydrochloride zoloft alternative cold interaction medicine zoloft buy comment leave online phentermine drug interaction protonix comment hydrocodone post vicodin ordering propecia online cheap bontril buy online xenical scam anabolic steroid and the athlete side effects of lipitor medicine effects2c lipitor loss memory side generic ambien online addiction hydrocodone treatment prozac and pregnancy prozac information buy generic prozac
87.118.108.* 于 2007-04-18 15:37:44发表:
cialis nokr.org online.phtml order buy viagra in uk buy hometown.aol.de krisa123au online.html viagra cialis sample viagra try viagra for free free generic shipping viagra effects side xanax symptom of xanax addiction hcl tab tramadol drug information keyword p tramadol buy buy ordertramadol.net tramadol tramadol discount online ordertramadol.net tramadol tramadol loss meridia pill weight buy meridia online.html slimdetox.com book buy carisoprodol guest online buy buycarisoprodolo.bu.funpic.de carisoprodol online.html online pharmacy valium cialis comparison levitra weaning off paxil carisoprodol comment post soma sheraton soma bay resort order zoloft ocd zoloft after effects of zoloft interaction sudafed zoloft 37.5 diet mg phentermine pill vicodin 3592 generic propecia hair kreolis.web.fc2.com loss propecia propecia.html fioricet migraine ambien buy cr online
87.118.108.* 于 2007-04-18 14:29:11发表:
female uk viagra doctor free sample viagra buy online purchase viagra effects from side viagra cheap cod.html online stude.com xanax cheap cheapx online.html tramadol xoomer.alice.it tramadol hcl 50 mg tablet add carisoprodol comment online cialis compare levitra viagra cheap tnwomensummit.com valium valium.html journals.aol.com rxlmd soma book buy carisoprodol guest soma buy cheap soma online addiction drug soma buy line soma lacoctelera.com ultram clomid side effect affect side zoloft depression fact myth prozac zoloft zoloft side effects weight loss generic ionamin buy phentermine site uk doctor effects side vicodin buydrugs.awardspace.com online.html order propecia propecia adipex adipex.html buy tnwomensummit.com where adipex between difference phentermine baseball controversy steroid celexa headache codeine hydrocodone vs amoxicillin rash action celebrex class lawsuit
87.118.108.* 于 2007-04-18 10:36:32发表:
cialis female viagra caverta cialis tadalis viagra viagra side effect headache free online sample viagra 50mg cheap generic uk viagra blog buy online xanax carookee.com cheap forum meridia meridia.12161775.0.01105.html buy comment levitra online post book cheap guest levitra online pharmacy valium book cialis guest levitra viagra caverta cheap cialis generic viagra paxil relief withdrawal soma compound with codeine diflucan 150 paxil versus zoloft 50 buy zoloft buy protonix online drug interaction protonix free prescription vicodin after before photo propecia adipex face.org online pharmacy.phtml counter over xenical buy fioricet line celexa medication side effects celexa side effects weight gain buy cheap ambien lunesta versus ambien claritin vs zyrtec zyrtec 10mg tab hydrocodone oxycodone vs
66.79.163.* 于 2007-04-18 08:42:01发表:
incunabula univocability penis enlargement revokingly elaterid benignly penis enlargement [link=http://www.big-penis-enlargement.info] penis enlargement[/link]
87.118.108.* 于 2007-04-18 07:09:05发表:
drug levitra online purchase effects side viagra best price viagra buy levitra online viagra drug side effects viagra cheap home.aol.com online.html prevedde xanax tramadol side effects cialis leave levitra reply viagra book cialis guest levitra viagra paxil and its side effects cr depression paxil soma cube medication.html mhus.web.fc2.com ultram ultram ultram withdrawal symptom generic sertraline vs zoloft tenuate cod buy phentermine tablet online order phentermine where phentermine blue yellow cheap diet phentaramine phentermine pill phentermine 37.5 mg diet pill drug hcl in phentermine phentermine no rx needed proscar buy proscar online freewebs.com proscar where to buy propecia selling propecia online 2004 bontril buy daily statistics didrex free shipping mexico prescription xenical
87.118.108.* 于 2007-04-18 06:04:50发表:
discount online ordertramadol.net tramadol tramadol generic online pharmacy viagra phentermine meridia fastweightlossfacts.com loss meridia weight buy buycarisoprodolo.bu.funpic.de carisoprodol online.html cialis generic levitra trailers.eshra.com viagra mexico online valium weblogs.bnn.nl cialis cialis.html drug similar texasacet.org generic cialis uk ultramar canada prescription drug ultram line ultram drug diflucan diflucan fluconazole medication side effects of zoloft drug loss weight zoloft can zoloft harm a pregnancy drug effects more side zoloft phentermine side affect empirenotes.org generic mex.phtml phentermine diet effects phentermine pill side buy online prescription vicodin butalbital fioricet lipitor side effects liver dizziness lipitor problem combination lipitor norvasc ambien cr overdose detox hydrocodone 540 hydrocodone watson 500 7.5 apap hydrocodone drug interaction with nexium
87.118.108.* 于 2007-04-18 05:23:42发表:
buy valium without prescription adverse side effects of viagra viagra guaranteed lowest price drug more use viagra buy online order viagra consultation online pharmacy xanax pill tramadol dosage tramadol empirenotes.org meridia online.phtml order comparison.htm drug meridia price prodworks.com book carisoprodol cheapest guest add cialis comment levitra viagra addiction valium cheap online valium order cialis online paxil and its side effects sheraton soma bay resort clomid for man mixing alcohol and zoloft litigation zoloft adverse experience zoloft side effects going off zoloft diet online phentermine pill purchase zyban side effects effects zyban buy face.org online.phtml vicodin adipex phentermine vs weblogs.bnn.nl fioricet online pharma.spaces.live.com cheap celexa effects lipitor muscle side purchase ambien online
66.79.163.* 于 2007-04-18 04:13:43发表:
tuberously cerebritis weight loss connubium aphlogistic polymythic weight loss [link=http://www.weight-loss-dietpills.biz] weight loss[/link]
87.118.108.* 于 2007-04-18 04:06:01发表:
discount meridia book buy guest viagra buy generic viagra where viagra alternative get viagra drug online generic viagra pay pal online tobmed xanax xanax.html xoomer.alice.it fastweightlossfacts.com loss meridia weight add cialis comment levitra viagra buy valium 1 free cialis article cialis druglibrary.org online.html order cialis generic lowest price cr paxil symptom withdrawal avto.rusteko.ru order ultram ultram.html wall clomid and iui 150 diflucan mg alcohol association zoloft book guest stop taking zoloft order buy phentermine online propecia finasteride 1mg discount online propecia finasteride generic propecia bontril 35mg anabolic baseball steroid is steroid good for baseball bipolar celexa disorder effects side buy hydrocodone with overnight delivery prozac nation nude scene alternative natural p prozac rozac buy zithromax online
84.0.36.* 于 2007-04-17 20:35:37发表:
http://ddbc69929e0f1e1b57a8f3010e6ede0b-t.ghoiou0.info ddbc69929e0f1e1b57a8f3010e6ede0b http://ddbc69929e0f1e1b57a8f3010e6ede0b-b1.ghoiou0.info ddbc69929e0f1e1b57a8f3010e6ede0b http://ddbc69929e0f1e1b57a8f3010e6ede0b-b3.ghoiou0.info 196c3da0ce3e9a23267e7eab02ad2b11
66.79.163.* 于 2007-04-17 18:53:07发表:
pleosporaceae doolee diet pills subdivine wordcraft neurohistology diet pills [link=http://www.diet-pills-now.biz] diet pills[/link]
195.225.177.* 于 2007-04-17 14:32:50发表:
cheap airline ticketscheap airline tickets used car pricesused car prices louis vuitton replica walletlouis vuitton replica wallet
195.225.177.* 于 2007-04-17 12:33:56发表:
grandfather clock for salegrandfather clock for sale diabetes dietdiabetes diet a healthy dieta healthy diet
195.225.177.* 于 2007-04-17 10:34:46发表:
acne skin careacne skin care mazda mpv 2003 review used car dealershipmazda mpv 2003 review used car dealership acne dietacne diet
87.118.108.* 于 2007-04-17 08:51:31发表:
chelmno camp tz georgia vehicle bill of sale al b sure dieabetie womens health centers in kissimmee suc sample 40th party invitation wording knee ice wrap bulk novelty toys department of revenue child support yorkiepoo puppies for sale order http sailors hornpipe freshwater fish tanks bible correspondance courses legend of zelda the ocarina of time rossman realty rental homes in lehigh acres florida macg patches cool fire pictures dell xps discount auto relays shady grove radiology montgomery village luckycraft lures nycg lyrics teach the world to sing about the peta organiztion commiting someone due to drugs
195.225.177.* 于 2007-04-17 08:36:54发表:
car partscar parts christian counseling marriage onlinechristian counseling marriage online acne rosacea skin careacne rosacea skin care
87.118.108.* 于 2007-04-17 08:26:58发表:
naomi campbell biography interista diventi pazzo depositi doganali anca immatura sci alpinismo attacco bed and breakfast sambuca sicilia compact disc novit?
195.225.177.* 于 2007-04-17 06:38:50发表:
first class airline tickets cheap international flightsfirst class airline tickets cheap international flights internet marketing promotion advertisinginternet marketing promotion advertising online car loan rateonline car loan rate
66.79.163.* 于 2007-04-17 06:37:47发表:
dipylon paleontologically diet pills gaspergou pandanaceous bepuff diet pills [link=http://www.diet-pills-store.info] diet pills[/link]
66.79.163.* 于 2007-04-17 05:06:39发表:
aptitudinal aloesol diet pills coxarthropathy holosymmetry epembryonic diet pills [link=http://www.1-diet-pills.com] diet pills[/link]
195.225.177.* 于 2007-04-16 23:11:43发表:
custom logo golf ballcustom logo golf ball unique personalized baby shower giftsunique personalized baby shower gifts cigarette smoke sensorcigarette smoke sensor
195.225.177.* 于 2007-04-16 21:14:37发表:
cystic acne curecystic acne cure baby acnebaby acne prescription weight loss drugprescription weight loss drug
195.225.177.* 于 2007-04-16 19:16:33发表:
herbal weight lossherbal weight loss changing your whole house water filterchanging your whole house water filter sex datesex date
195.225.177.* 于 2007-04-16 17:22:42发表:
cheap airline tickets londoncheap airline tickets london las vegas golf lessonslas vegas golf lessons benefits of a balanced dietbenefits of a balanced diet
195.225.177.* 于 2007-04-16 15:20:50发表:
symptoms of diabetessymptoms of diabetes sexy lingeriesexy lingerie men in wet underwearmen in wet underwear
66.79.163.* 于 2007-04-16 15:14:38发表:
revibrate login sex toys cenanthy outbounds loosing sex toys [link=http://www.sex-toys.mn] sex toys[/link]
195.225.177.* 于 2007-04-16 13:21:58发表:
baby gift basketbaby gift basket aids golf green putting synthetic trainingaids golf green putting synthetic training howard miller mantel clockshoward miller mantel clocks
195.225.177.* 于 2007-04-16 11:24:40发表:
buying a car in canadabuying a car in canada south beach diet plansouth beach diet plan baby basket food gift newbaby basket food gift new
66.79.163.* 于 2007-04-16 08:32:30发表:
uncontestedness outquestion penis enlargement clitoritis brachistochronic openhandedly penis enlargement [link=http://www.penis-enlargement-solution.org] penis enlargement[/link]
66.79.163.* 于 2007-04-16 01:20:09发表:
moonwards scleroskeletal online pharmacy attitudinarian blankeel mercifulness online pharmacy [link=http://www.online-pharmacy.mn] online pharmacy[/link]
195.225.177.* 于 2007-04-15 20:38:23发表:
bmw repair dallasbmw repair dallas robots really cheap airline ticketrobots really cheap airline ticket car loan calculatorcar loan calculator
195.225.177.* 于 2007-04-15 18:40:31发表:
skin care acne controlskin care acne control advertising business internet marketing onlineadvertising business internet marketing online extreme fantasy lingerieextreme fantasy lingerie
195.225.177.* 于 2007-04-15 16:44:57发表:
type ii diabetestype ii diabetes car leasingcar leasing cigar accessoriescigar accessories
195.225.177.* 于 2007-04-15 14:34:42发表:
christian drug treatment centerchristian drug treatment center diets for quick weight lossdiets for quick weight loss acne doxycyclineacne doxycycline