• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root [Virgin Mobile] AOSP

Please move or remove them before you can merge.
Aborting
anon@anonnix:~/android/kernel$

when doing git pull experimental
 
You should delete everything in the Kernel folder first before running clone or pull, sorry, will edit my instructions to include that. ;)
 
well so far i have /home/anon/android/kernel with the vaevic github files and im running the commands to pull experimental branch to that folder, i guess.

deleted all files and reran command, should b good
 
We could make a script with error checking that would reset and pull automatically. Building creates new files and modifies others (adding note about that to my build instructions), so a hard reset to head is the only way I know to get back in sync after each build.
 
4.6.2 has been smooth so far, might try a build with 4.7.3 tomorrow.

BTW- anyone know an app that can set the GPU speed? I'm testing the latest commits, but having trouble finding an app to test with. I can test performance with tons of them, but haven't found one to set speeds yet?!?
 
i was just looking into 4.7, maybe ill grab that to test it and let ya know, let me see how this comes out real quick, ill report back. yall wanna open a hangout or irc channel or somethin let me know! thanks for everything guys cool shit


and 4.8 i see
 
4.6.2 has been smooth so far, might try a build with 4.7.3 tomorrow.

BTW- anyone know an app that can set the GPU speed? I'm testing the latest commits, but having trouble finding an app to test with. I can test performance with tons of them, but haven't found one to set speeds yet?!?

Look up kernel tuner in play store
 
i was just looking into 4.7, maybe ill grab that to test it and let ya know, let me see how this comes out real quick, ill report back. yall wanna open a hangout or irc channel or somethin let me know! thanks for everything guys cool shit

Irc channel will be #victory-recon on freenode
Get on
 
4.6.2 has been smooth so far, might try a build with 4.7.3 tomorrow.

BTW- anyone know an app that can set the GPU speed? I'm testing the latest commits, but having trouble finding an app to test with. I can test performance with tons of them, but haven't found one to set speeds yet?!?

used to use Kernel Tuner for GPU speeds but not sure if its compatible with the Victory
 
Another way to simplify things with your build script, add this (edited to your needs) to allow run-time selection of the toolchain you want to use:
Code:
echo " "
echo "Which toolchain do you want to use?"
select yn in "~/android/arm-eabi-4.6/bin/arm-eabi-" "~/android/arm-eabi-4.7/bin/arm-eabi-"; do
    case $yn in
        \~/android/arm-eabi-4.6/bin/arm-eabi- ) echo "Building with $yn"; break;;
        \~/android/arm-eabi-4.7/bin/arm-eabi- ) echo "Building with $yn"; break;;
    esac
done
echo " "

echo " "
echo "Beginning actual build..."
echo " "
make ARCH=arm SUBARCH=arm CROSS_COMPILE=$yn -j4 -w
 
Back
Top Bottom