Wednesday, April 1, 2015
Become a Real JTAGer First Steps Installation Registration Advanced
We are happy to see you take the first step to become a Real JTAG’er
Samsung Galaxy S4 i337 unlocked First in the world completed thanks z3x
New Registration / Installation:
Monday, March 16, 2015
Downlaod Toshiba Satellite C55 A All Drivers For Windows 7
Free Downlaod Toshiba Satellite C55-A All Drivers For Windows 7

- Model Type : Toshiba Satellite C55-A
- Manufacture : Toshiba
- Compability : Windows 7
To Download Driver Click On Download
Category | Company | Model / Version | Download |
| Bluetooth Filter Package | Atheros | S C50-A, S S50T-A, S Pro L50-A, S S50-A, S C55-A, S L50T-A, S Pro C50-A, S P50T-A, S L50-A, S P50-A | Download-20130729095058.zip |
| Bluetooth Monitor | Download-20130729135022.zip | ||
| Bluetooth Stack | 9.10.09T | Download-20130729143844.zip | |
| Card Reader Controller | Alcor | 4.4.1245.72462 | Download-20130729093742.zip |
| Chip Set Utility | Intel | 9.4.0.1017 | Download-20130729145516.zip |
DTS Studio Sound | DTS Inc | 1.00.0071 | Download-20130729145134.zip | ||
| Display | nVidia | 9.18.13.1141 | Download-20130730101613.zip | ||
| Display | Intel | 9.18.10.3165 | Download-20130729145846.zip | ||
| Eco Utility | Toshiba | 1.3.23.64 | Download-20130730120245.zip | ||
| Hardware Setup | 2.0.25 |
| |||
| Management Engine Interface | S P50-A, S C55-A, S L50-A, S Pro C50-A, S P50T-A, S C50-A, S S50-A, S Pro L50-A, S S50T-A, S L50T-A | Download-20130730100454.zip | |||
| PROSet/Wireless Software | 15.6.1.0.0.s64 | Download-20130730100628.zip | |||
| LAN | Atheros | 2.1.0.14 | Download-20130729095409.zip | ||
| PC Health Monitor | 1.7.17.64 | Download-20130730130641.zip | |||
| Rapid Storage Technology | 12.0.4.1001 | Download-20130730100853.zip | |||
| Registry Patch | S P50-A, S L50-A, S S50T-A, S P50T-A, S Pro C50-A, S C55-A, S C50-A, S L50T-A, S Pro L50-A, S S50-A | Download-20130730140309.zip | |||
| Sleep Utility | Download-20130730134147.zip | ||||
| Recovery Media Creator | Download-20130730133957.zip | ||||
| Touch Pad | Synaptics | 16.4.2.8 | Download-20130730102013.zip | ||
| Touch Pad | Alps Electric | 8.100.303.405 | Download-20130729093938.zip | ||
| USB | 2.0.0.102 | Download-20130730101135.zip | |||
| Value Added Package | 1.6.0035.6406 | Download-20130730134457.zip | |||
| Wireless Lan | Realtek Semiconductor Corporation | 2.00.0021 | Download-20130730101829.zip | ||
| Wireless Lan | 15.4.1.1.0.s64 | Download-20130730101418.zip | |||
| Wireless Lan | Atheros | S S50T-A, S Pro C50-A, S C55-A, S L50T-A, S P50T-A, S L50-A, S Pro L50-A, S C50-A, S P50-A, S S50-A |
|
Dont Forget To Say Thanks In Comment http://pcmobtab.blogspot.com
Monday, March 9, 2015
What is a Kernel Module
- kernel modules are object files that contain kernel code.
- They can be loaded and removed from the kernel during run time.
- They contain unresolved symbols that are linked into the kernel when the module is loaded.
- kernel modules can only do some of the things that built-in code can do , they do not have access to internal kernel symbols.dep
Writing a simple kernel module:
Here I am explaining how to write a simple kernel module that doesnt have any functionality.
Every Kernel modules must have at least two functions:
"start" (initialization) function called init_module()
It is called when the module is loaded using insmod into the kernel.
"end" (cleanup) function called cleanup_module()
It is called just before it is removed using rmmod.
- Module code should not invoke user space Libraries or API’s or System calls.
- Modules are free to use kernel data types and GNU-C extensions for linux kernel.
- Following path contains the list of header files that can be included in module programs./lib/modules/2.6.32.generic/build/include/linux.
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/version.h>
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("This is a my First Test Module...!");
MODULE_AUTHOR("GVK51");
int init_module(void){
printk(KERN_INFO "My first Test module loaded...!
");
return 0;
}
void cleanup_module(void){
printk(KERN_INFO "My first Test module Un-loaded...!
");
}
Note: Copying the code directly into your source.c file will also copies the invisible characters and finally you will left out with stray errors, i recommend you to type the code and that even becomes a practice.
- In modules the comments are achieved with macros so that information of module sits along with the code so that debugging becomes easy. i.e., comments are not stripped out.
- License macro is mandatory even if it is free or proprietary.
- Modules can comprise of any number of functions and data elements which form module body.
- src/Makefile called as top/primary Makefile
- Each branch in kernel source has a Makefile called as kbuild Makefile.
obj-m := test.o
all:
make -C /lib/modules/$(shell uname -r)/build/ M=$(shell pwd) modules
clear:
make -C /lib/modules/$(shell uname -r)/build/ M=$(shell pwd) clean
from a technical point of view the first line is really necessary, the "all" and "clean" targets were added for convenience, and make sure that after "all:" give a tab and write the command as its a convention in writing Makefile.
Now you can compile the module test.c using make command. Here is the list of command I am executing the corresponding output is show in below image highlighted with blue arrow.
Note: You should be the root user or should have requisite permissions to load and unload modules.
$ ls (to list the files in the current directory)
$ make ( to build the module, this will generate many files)
$ ls (to list the files in the current directory)
$ insmod test.ko ( loading the module)
$ dmesg ( to see the messages printed by printk)
$ modinfo test.ko (this display the module informatio, we have put in macros)
$ rmmod test ( unloading the module)
$ dmesg ( to see the messages printed by printk)
Sunday, February 8, 2015
More iPhone 6 videos including a clip of the 5 5 iPhones battery
Saturday, February 7, 2015
Death and Betrayal in Romania A Dana Knightstone Novel Collectors Edition
Sunday, February 1, 2015
Latest Oppo N3 leak shows a different design than before
Saturday, January 31, 2015
Apple�s iPhone 6 And iPhone 6 Plus Top A Record 4 Million Pre Orders In First 24 Hours

Apple announced yesterday that they have received a record number of pre-orders for the iPhone 6 and the iPhone 6 Plus in its first 24 hours of availability. The number has actually surpassed 4 million, putting this release on track to be the biggest launch in the companys 38 year history. The decision to move to two larger-screen devices appears to be a stroke of genius by Apple as consumers from ten territories ensured that the initial stock was completely depleted.
Two years ago when Apple launched the iPhone 5, there were 2 million pre-orders in the first 24 hour. This was the first iPhone model to move away from the standard 3.5 inch display across to a 4 inch offering. Last year when we had two models to choose from, the iPhone 5s and the iPhone 5c, 9 million units were sold during hte first weekend of actual availability in digital and brick and mortar stores. Yesterdays announcement of 4 million units sold as part of a pre-order offer puts Apple on track to completely obliterate those numbers.
Judging by initial stock level updates when pre-orders went live, it looks like the jumbo-size iPhone 6 Plus model is proving to be the most popular. This is potentially down to a large number of Android users decided to take advantage of the power of iOS 8 on a larger screen device. This theory has also been backed up by announcements from buyback services relating to a huge increase in Samsung devices being traded in after the Apple announcement.
To coincide with the initial success of the iPhone 6, it is being reported that Apple has already instructed a number of manufacturing partners to ramp up their production schedule by 30 to 40% on last years initial run of the two available iPhone models. Apple also announced via an official press release that the iPhone 6 and the iPhone 6 Plus will be available in an additional 20 countries on Friday, 26th September. Tim Cook has also described the iPhone 6 models as being better in every way and he is thrilled that customers love them as much as he does. If all these figures are anything to go by, it looks like 4 million people are in agreement with Mr. Cook. What about you, have you pre-ordered your iPhone 6 or iPhone 6 Plus model yet?
Sunday, January 25, 2015
There is a duplicate system web extensions scripting scriptResourceHandler section defined
You are .NET developer and has this problem or error message while deploying your compiled apps using MS Visual Studio 2008 and try to deploy on IIS 7 or 8? Running Windows 8 Pro?
After commenting a lot in your web.config file does not help. These what you should do. Its works for me and hope it work for you as well.
Im running Windows 8 Pro with IIS version 8.
Error message on my screen.
Config Error There is a duplicate system.web.extensions/scripting/scriptResourceHandler section defined
Config File \?C:inetpubwwwrootadmin_permataweb.config
"<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions,......"
What should I do?
Google around and change my PC config.... its really messy. Dont do it. You will forget what you have changed. Its just too many steps...
What I did!
In you PC control panel look for this. Turn Windows features on or off
Look for World Wide Web Services > Application Development Features
Enable it all. My case I did not use CGI. Just uncheck it. Click [OK] and get it installed.
You should have this on your IIS Application Pool.
Go to your IIS Manager. Select your web site and click on "Advanced Setting"
Change it from DefaultAppPool to Classic .NET AppPool
DONE!
Your app should run normally!
Saturday, January 24, 2015
Lagi JVQ 2 3 4 yang menarik S U R F A C E v2 00
http://forum.xda-developers.com/showthread.php?t=1155776
Downloading and coming soon will be on my SGS phone... for now GingerReal v8.0 the best after DarkyRom v10.1 RE/EE







