USAGE:Plug your GameShell sdcard into your PC,on Windows you will see a driver with label " boot " in your File Manager, download and copy uImage into it,overwrite the one which already exists( DO A BACKUP BEFORE THIS ).If Windows ask you to format or repair your driver when you plug your sdcard,ignore it!
NOTE:I don’t test on other versions of GameShell OS except v0.4.
Plugin your sdcard into PC.
On Windows you will see a driver with label “boot” in your File Manager, copy uImage into it,overwrite the one which already exists(DO A BACKUP BEFORE THIS).If Windows ask you to format or repair your driver when you plug your sdcard,ignore it!
What’s the version of you GameShell OS,could you please post a picture of your issue.
If you have the lastest v0.4 GameShell OS,when you plugin your sdcard,on Windows your will see two disk driver in your file manager:one with a label “boot” another your can’t open because Windows can’t recognize.
make -j2 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- menuconfig
to save the config,this step will avoid to answer questions during compiling.
make -j2 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
the argument -j2 can be -j[number of your PC processors],it’s 2 here because my PC has only 2 processors.
Step 3
mkimage -A arm -O linux -T kernel -C none -a 0x40008000 -e 0x40008000 -n "Linux kernel" -d arch/arm/boot/zImage uImage
After all those steps without an error,you will see the uImage file.
PS:
you can download the cross compiler from here if you don’t have one: Cross Compiler
and don’t forget to add it to the PATH.