Cifs & SMB Sharing - Transformer TF300T General

Hello,
I
CM10 Official + Untermensch Kernel +CifsManager = Great funcionality
To made it works property needs a pair of trick with CifsManager config:
Settings->Load cifs module->Enable
Settings->Load via insmod->Enable
Settings->Path to cifs: copy : " /system/lib/modules/cifs.ko: /system/lib/modules/md4.ko "
Hope this can be usefull
Sent from my Transformer Pad TF300T using xda app-developers app

Related

[Q] Will Revolver by Gnufabio 3.11 - HC3B0 work on a B80 transformer using CWM?

Hi Everyone,
2 questions:
Will [ROM] Revolver by Gnufabio | 3.11 - HC3B0 work on a B80 transformer using CWM?
Where can I get the stock rom for a B80 transformer in case I have a problem with any new modded rom?
Thanks.
Truly,
Emad
Do a nandroid backup through CWM and you'll always have the stock rom with all your settings. Yes, Revolver will work on your B80. I'm running it without problem on my B90.
Sent from my Transformer TF101 using Tapatalk
+1 for running Revolver 3.11 on a B80 with no problem.
Sent from my Transformer TF101 using xda premium
... your serial number does not matter unless it is in reference to NVFlash all roms will work on all models

Tf300t blob tools needed. I want to bring a custom kernel

Hey,
I hope the devs here are as helpfull as in the Xperia forums were I develop for some time now
The problem is, I want to mak3e a custom jellybean kernel for tf300, but with the blob tools I could find (those from tf200) I don't get a Header file when unpacking the asus stock blob file
Please someone help me, I'm very familiar with kernel development on phones, but not on tablets
Thanks, krabappel2548
Sent from my ASUS Transformer Pad TF300T using xda app-developers app
Problem solved thread can be deleted
Sent from my LT26i using xda app-developers app

[Q] About Kernel

Hello guys, I want to ask some questions. I've made a kernel compiled from source (opensource.samsung.com). Now, I want to add features to it. How to add/enable:
1. Cpu frequencies
2. Governors
3. I/O Scheduler
Can somebody explain to me
Sorry for asking noob questions
And if you know about adding more features again, please tell me.
Sent from my GT-S5360 using xda premium
Yes im askin this question too
Please explain...
Or.....ill just ask naman and deadly mah mastahz.....
Sent from my GT-P3110 using Tapatalk 2
Hey dude, I got it. You can add gov & i/o sched via .config. Just type 'make menuconfig' in terminal and include all governors that available on setting. By default, there are available govs & i/o scheds on the source.
Sent from my GT-S5360 using xda premium
And, how to add additional gov like smartass, interactive? And i/o scheduler sio?
Sent from my GT-S5360 using xda premium
just enabled in .config will not make your governor working (it's compiled but not working). you need to patching.
DennisFrea said:
And, how to add additional gov like smartass, interactive? And i/o scheduler sio?
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Add Smartass interactive Source In
common / drivers / cpufreq (Copy From Other Source) Dir Then Edit Kconfig,Makefile
My Advice Check Other kernel Git Source How they Added .
Make File Ex:-
Code:
obj-$(CONFIG_CPU_FREQ_GOV_INTERACTIVE) += cpufreq_interactive.o
obj-$(CONFIG_CPU_FREQ_GOV_LIONHEART) += cpufreq_lionheart.o
obj-$(CONFIG_CPU_FREQ_GOV_ONDEMANDX) += cpufreq_ondemandx.o
obj-$(CONFIG_CPU_FREQ_GOV_SMARTASS2) += cpufreq_smartass2.o
_______________
For I/O scheduler
Add sio-iosched.c , vr-iosched.c File In
common / block/
Then Edit Kconfig.iosched ,Makefile
Ex Make File :-
Code:
obj-$(CONFIG_IOSCHED_VR) += vr-iosched.o
obj-$(CONFIG_IOSCHED_SIO) += sio-iosched.o
Thanks
Hope My little Guide Help U To Make Great Kernel
U Can Check Guide
http://forum.xda-developers.com/showthread.php?t=1845099
irfanbagus said:
just enabled in .config will not make your governor working (it's compiled but not working). you need to patching.
Click to expand...
Click to collapse
Can you explain to me how to patching sir? I have added govs. But when I choose ondemand, conservative, smartassv2 or interactive my governor always become performance. But, I can use userpace and and powersave..
I can't use those govs so it automatically reverts back to performance..
manoranjan2050 said:
Add Smartass interactive Source In
common / drivers / cpufreq (Copy From Other Source) Dir Then Edit Kconfig,Makefile
My Advice Check Other kernel Git Source How they Added .
Make File Ex:-
Code:
obj-$(CONFIG_CPU_FREQ_GOV_INTERACTIVE)+= cpufreq_interactive.o
obj-$(CONFIG_CPU_FREQ_GOV_LIONHEART)+= cpufreq_lionheart.o
obj-$(CONFIG_CPU_FREQ_GOV_ONDEMANDX)+= cpufreq_ondemandx.o
obj-$(CONFIG_CPU_FREQ_GOV_SMARTASS2)+= cpufreq_smartass2.o
_______________
For I/O scheduler
Add sio-iosched.c , vr-iosched.c File In
common / block/
Then Edit Kconfig.iosched ,Makefile
Ex Make File :-
Code:
obj-$(CONFIG_IOSCHED_VR)+= vr-iosched.o
obj-$(CONFIG_IOSCHED_SIO)+= sio-iosched.o
Thanks
Hope My little Guide Help U To Make Great Kernel
U Can Check Guide
http://forum.xda-developers.com/showthread.php?t=1845099
Click to expand...
Click to collapse
Hey thanks for your advice, I already added more govs from maroc-os github because some kernel makers also took source from it.
Sent from my GT-S5360 using xda premium
if Ur GOV Not Working Any Time If U Select Other Gov Its Back/Become To Performance.
Then Try This And Build/Compile ...
Find File Common/arch/arm/plat-bcmap/bcm_cpufreq.c
Find
Code:
policy->cpuinfo.transition_latency = ;
To
Code:
policy->cpuinfo.transition_latency = 1000000;
Hope Its Work For U
Thanks
manoranjan2050 said:
if Ur GOV Not Working Any Time If U Select Other Gov Its Back/Become To Performance.
Then Try This And Build/Compile ...
Find File Common/arch/arm/plat-bcmap/bcm_cpufreq.c
Find
Code:
policy->cpuinfo.transition_latency = ;
To
Code:
policy->cpuinfo.transition_latency = 1000000;
Hope Its Work For U
Thanks
Click to expand...
Click to collapse
Man it workss!! Thanks again!
Sent from my GT-S5360 using xda premium
DennisFrea said:
Man it workss!! Thanks again!
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
U r welcome my friend. Happy new year.....
Sent from my GT-S6102 using Tapatalk 2
manoranjan2050 said:
U r welcome my friend. Happy new year.....
Sent from my GT-S6102 using Tapatalk 2
Click to expand...
Click to collapse
Happy new year too..
Sent from my GT-S5360 using xda premium
help
what is a kernel? noob here.

[MOD] Aircrack for N7100 ( RTL8187 & AR9271)

I have manged to Alfa AWUS036H and TP-LINK TL-WN722N external usb adapter to work with aircrack-ng with backtrack for ARM in my Galaxy Note II ( n7100). If anyone interested have a look
an EXPERIMENTAL flashable zip for CM10.1 based rom is available at http://www.maxters.net/2013/02/aircrack-suite-for-galaxy-note-2/
Is there a chance to flash this zip on a stock rom ?
Where can I find the patches you made to the kernel?
Sent from my GT-N7100 using xda app-developers app
Right on man. I'm hoping the bcmon guys get monitor mode working for our 4334, but until then I'll see if I can get some drivers working for my asus external thumb wireless card. Any advice appreciated.
Sent from my SCH-I605 using xda app-developers app
sbcdave said:
Right on man. I'm hoping the bcmon guys get monitor mode working for our 4334, but until then I'll see if I can get some drivers working for my asus external thumb wireless card. Any advice appreciated.
Sent from my SCH-I605 using xda app-developers app
Click to expand...
Click to collapse
which is your driver for adapter?
you can get it by plugging into a backtrack machine or any other linux distro and then run airmon-ng
Hello how are you?
would have the ability to install the zip in me Note n7000?
thanks
hi @nizammoidu, do you think you could make a kernel compatible with lollipop for n7100 since this only works on cm10.1 right?
hackerse7en said:
hi @nizammoidu, do you think you could make a kernel compatible with lollipop for n7100 since this only works on cm10.1 right?
Click to expand...
Click to collapse
hi , I dont use n7100 anymore . can you give which kernal are you using then I will try to compile send to you.
Hi, would this be possible for agni kernel and 4.4.4 non-cm android?
nizammoidu said:
hi , I dont use n7100 anymore . can you give which kernal are you using then I will try to compile send to you.
Click to expand...
Click to collapse
im using ivan's meller cm13 rom is it possible? if not we can use maybe a kk version or lollipop ? wich one is easier?
If you on 4.4.2 stock rom, you give the nadia kernel for 4.4.2 from maxter. It works just as great and has more precompiled usb wifi drivers on it and works perfectly with aircrack via Ubuntu and linux
Sent from my GT-N7100 using XDA Free mobile app

[Q] How to enable CIFS mouting on Nexus 4

I am looking for either the kernel modules or a working kernel for mounting my samba drives through CIFS on my Nexus 4.
Is there anyone out there who has managed to do this and would like to share his or her solution?
I am currently running CM10.1 nightlies and have tried all (!?) avaliable kernels, even the one that says they are supporting CIFS but it does not work. At least not with the CifsManager app and Samba shared drives on a Ubuntu Server 12.04 system.
I've managed to get this to work with _motley's kernel: http://forum.xda-developers.com/showthread.php?t=2021437
[KERNEL][Feb 25][b40] _motley kernel for the N4 (smp patches back for 4.2.2)
And here's my setup
(will upload later, xda app is acting up)
Sent from my Nexus 4 using xda premium
what's ur solution?

Categories

Resources