Pages

Showing posts with label a. Show all posts
Showing posts with label a. Show all posts

Wednesday, April 1, 2015

Become a Real JTAGer First Steps Installation Registration Advanced

Thank you for your purchase ,
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:  
Download ORT Installer 
Install ORT Plus Software
Connect Your ORT-JTAG to your USB
Install Drivers “C:Program FilesORTdriverORT”
Start ORT Plus Software
Go to About TAB and click www.ort-jtag.com
Enter and Verify your email adress
Your Account is activated for support page
You have successfully installed ORT Plus Software
Read more »

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
     
Direct Download Toshiba Satellite C55-A All Drivers For Windows 7
To Download Driver Click On Download   
Category
Company
Model / Version
Download
Bluetooth Filter PackageAtherosS 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-ADownload-20130729095058.zip
Bluetooth Monitor

Download-20130729135022.zip
Bluetooth Stack
9.10.09TDownload-20130729143844.zip
Card Reader ControllerAlcor4.4.1245.72462Download-20130729093742.zip
Chip Set UtilityIntel9.4.0.1017Download-20130729145516.zip

DTS Studio Sound
DTS Inc
1.00.0071
Download-20130729145134.zip
DisplaynVidia9.18.13.1141Download-20130730101613.zip
DisplayIntel9.18.10.3165Download-20130729145846.zip
Eco UtilityToshiba1.3.23.64Download-20130730120245.zip
Hardware Setup
2.0.25

Download-20130730122159.zip
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-ADownload-20130730100454.zip
PROSet/Wireless Software
15.6.1.0.0.s64Download-20130730100628.zip
LANAtheros2.1.0.14Download-20130729095409.zip
PC Health Monitor
1.7.17.64Download-20130730130641.zip
Rapid Storage Technology
12.0.4.1001Download-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-ADownload-20130730140309.zip
Sleep Utility

Download-20130730134147.zip
Recovery Media Creator

Download-20130730133957.zip
Touch PadSynaptics16.4.2.8Download-20130730102013.zip
Touch PadAlps Electric8.100.303.405Download-20130729093938.zip
USB
2.0.0.102Download-20130730101135.zip
Value Added Package
1.6.0035.6406Download-20130730134457.zip
Wireless LanRealtek Semiconductor Corporation2.00.0021Download-20130730101829.zip
Wireless Lan
15.4.1.1.0.s64Download-20130730101418.zip
Wireless LanAtherosS 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

Download-20130729134923.zip
 

Dont Forget To Say Thanks In Comment http://pcmobtab.blogspot.com

Read more »

Monday, March 9, 2015

What is a Kernel Module

Modules are pieces of code that can be loaded and unloaded into the kernel upon demand. They extend the functionality of the kernel without the need to reboot the system. 
Example: one type of module is the device driver, which allows the kernel to access hardware connected to the system. 
 Without modules, we would have to build monolithic kernels and add new functionality directly into the kernel image. Besides having larger kernels, this has the disadvantage of requiring us to rebuild and reboot the kernel every time we want new functionality.

Click here: Difference between monolithic kernel and  micro kernel.

  • 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
 Kernel Module Utilities:

lsmod      : lists the modules already loaded into kernel.

rmmod    : Removes or unloads a module one at a time.

insmod    : Insert or load a module.

depmod   : Creates the data base of module dependencies. This is created based         on the information present in /lib/modules/module.dep file.

modprob : Inserts a module and its dependencies based on information from modules.dep file.

modinfo  : List the information about the module like author, version tag, parameters etc. 

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. 



Kmod is a subsystem that allows the loading and unloading of modules.

Issues to be considered in writing a kernel module:
  • 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.
Code for test.c:

#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.


module.h : module management subsystem, its an interface file for Kmod functions.
kernel.h   : resolves kernel symbol calls, it provides access to global symbol table.
init.h        : describes the sequence of initialization.
version.h : It binds a module to a particular version of kernel.
printk     : printk is printf for kernel programs, as said earlier modules can’t use stdlib due to user space/ kernel space issues. Most of C library is implemented in kernel. with in printk “KERN_INFO” is a macro found in kernel.h that defines the priority to printk logs. There are 8 such macros as shown below.

0- highest priority 7-lowest priority

KERN_EMERG "<0>" /* system is unusable */
KERN_ALERT "<1>" /* action must be taken immediately */
KERN_CRIT "<2>" /* critical conditions */
KERN_ERR "<3>" /* error conditions */
KERN_WARNING "<4>" /* warning conditions */
KERN_NOTICE "<5>" /* normal but significant condition */
KERN_INFO "<6>" /* informational */
KERN_DEBUG "<7>" /* debug-level messages */

MACROS :
      MODULE_LICENSE() : declares the modules licensing
      MODULE_DESCRIPTION() : to describe what the module does
      MODULE_AUTHOR() : declares the modules author
  • 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.
Building a Module:
Kernel source has two types of make files:
  1. src/Makefile called as top/primary Makefile
  2. Each branch in kernel source has a Makefile called as kbuild Makefile.
So to build a module we have to write a Makefile that follows the rules followed by kbuild. To learn more on how to compile modules, see file linux/Documentation/kbuild/modules.txt.

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)

You are finally done...!
Read more »

Sunday, February 8, 2015

More iPhone 6 videos including a clip of the 5 5 iPhones battery

Another day another iPhone 6 video. No, make that a lot of videos. We saw a few over the weekend but now the mother lode has been exposed with a ton of new videos. They are all short, under half a minute but if you cant wait till tomorrow to get your iPhone 6 fix these videos will tide you over. Before that heres a video allegedly showing the battery of the 5.5" iPhone. Its a 3.8V Li-Po
Read more »

Saturday, February 7, 2015

Death and Betrayal in Romania A Dana Knightstone Novel Collectors Edition

Tragedy strikes Dana Knightstone, the best-selling novelist with a gift for clairvoyance. Step into the shoes of Dana while traveling to a book signing event in Romania. Find yourself suddenly trapped by an avalanche in the cold mountain alps where you are stranded in an old castle.Discover hidden passageways within the old castle walls to free yourself from the grasp of the ghost of the castle that seeks to imprison you. Find clues buried under the dusty dungeon floor and uncover the captivating story of love and betrayal.

Game Size 611 MB

OR
OR

Screenshots:


Have fun and feel free to leave your comments!
Read more »

Sunday, February 1, 2015

Latest Oppo N3 leak shows a different design than before

Couple of days ago, we showed you the design of the upcoming Oppo N3 that was sent to us by a tipster. Today, we are seeing another design, courtesy of SoyaCincau, which is completely different from the one we saw before. While our previous images had a cylindrical camera module at the top that could be rotated, the new image only shows the back of the phone with a flush camera module similar to
Read more »

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?

Read more »

Sunday, January 25, 2015

There is a duplicate system web extensions scripting scriptResourceHandler section defined

"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!



Read more »

Saturday, January 24, 2015

Lagi JVQ 2 3 4 yang menarik S U R F A C E v2 00

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
Read more »