3
votes
4answers
54 views
Is MODULE_LICENSE in a Linux Kernel Module legally binding?
I own a piece of proprietary hardware purchased from a company. They also provide a Linux kernel module for it, but it is incompatable with my kernel version and I'd like to get th …
3
votes
3answers
46 views
Current Linux Kernel debugging techniques
A linux machine freezes few hours after booting and running software (including custom drivers). I'm looking a method to debug such problem. Recently, there has been significant pr …
1
vote
4answers
59 views
Read single sector
Hi,
I am trying to read a single specific sector from the disk directly. I've currently run out of ideas and any suggestions how to go about it would be great! (I'm a linux newbie …
0
votes
4answers
133 views
How to debug driver load error?
I've made a driver for Windows, compiled it and tried to start it via SC manager, but I get the system error from the SC manager API:
ERROR_PROC_NOT_FOUND The specified procedure …
2
votes
6answers
85 views
How to better study Linux?
I'm taking a very basic university course on OS kernels and related stuff (process management, virtual memory, file systems, drivers..)
I wanted to deepen my understanding of Linux …
5
votes
4answers
99 views
Job Requirements: What does “Kernel Developer” REALLY mean?
I couple of months ago I was jobhunting. Since my resume is still out there I'm getting an average to two phone calls and four e-mailed messsages per day inquiring if I'm still on …
0
votes
2answers
57 views
Unable to debug the kernel driver using Serial cable
I am new to driver stuff. I have tried to debug the kernel driver using serial COM port without success. Could someone show me proper direction how to fix the problem?
I am seein …
15
votes
3answers
567 views
Extending Functionality of Magic Mouse: Do I Need a kext?
I recently purchased a Magic Mouse. It is fantastic and full of potential. Unfortunately, it is seriously hindered by the software support. I want to fix that. I have done quite a …
0
votes
3answers
90 views
uniprocessor or multiprocessor
On unix, how could we know whether the system is multiprocessor or uniprocessor?
0
votes
1answer
24 views
What is the exact architecture/components of MinWin?
I've always wanted a minimal windows NT build . Sounds like one's already there : MinWin. Can anyone tell me the exact design or architecture of MinWin and is it used in Windows 7 …
0
votes
4answers
116 views
Why sizeof(spinlock_t) is greater than zero on uni-processor ?
The following line printed output as 4 whereas I was expecting 0.
printk(KERN_INFO "size of spinlock_t %d\n", sizeof(spinlock_t));
I tried this on a system with single cpu. N …
0
votes
1answer
34 views
Configuring kernel
After create a new system call, how to update the kernel?
I tried these lines,
make-kpkg clean
fakeroot make-kpkg -initrd -append-to-version=-custom kernel_image kernel_headers
…
1
vote
1answer
61 views
Writing a System Calls for linux
i try to write a system call. I followed these steps:
linux/arch/x86/kernel/syscall_table_32.S ----> . long sys mycall
linux/include/linux/syscalls.h --------> asmlinkage …
0
votes
1answer
93 views
compiling my own kernel (not from linux-kernel source)
I'm following the kernel tutorial from here
im having problems compiling my files.
i get the following errors when i try to compile:
main.c:8: error: expected declaration specif …
-3
votes
3answers
100 views
Where can I find high detailed information about the kernel used in iPhone OS?
Does iPhone OS use the Mach kernel? Which one exactly? Are there somewhere interesting informations about the deep internals of iPhone OS? Where should I start?
I want to understa …
