Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Levak

Pages: 1 ... 18 19 [20] 21 22 ... 68
286
TI-Nspire / Re: Breakout board for the TI nSpire
« on: December 15, 2012, 11:05:04 am »
Hi,
I'm a bit confused on the way you'll try to connect to the dock connector ... using a dock connector ...

Indeed, if you look at any Nspire Cradle, you'll see that it has some brushes in order to keep every pin connected :

287
TI-Nspire / Re: nCraft (3D minecraft-like game for the nspire)
« on: December 15, 2012, 05:13:49 am »
Just saying : Do you guys know that school work (at least in France) can be really time consumming ?
If Chockosta hasn't updated its game for months it's likeky because he has a lot of stuff at school.

288
TI-Nspire / Re: Breakout board for the TI nSpire
« on: December 14, 2012, 06:05:36 pm »

289
Miscellaneous / Re: Random YouTube Videos
« on: December 13, 2012, 04:16:47 pm »
repost

290
News / Re: OS 3.2 blocks Ndless
« on: December 10, 2012, 08:36:20 pm »
<necroquestion>
Is it possible now to downgrade back to 3.1?
</necroquestion>
Yes

291
Art / Re: General purpose art thread
« on: December 06, 2012, 06:14:18 am »
I *think* the image is broken.
It stopped download when I saw completly "ROME, pre alpha visuals"

Anyway, you've just f*cked my internet connection =(

292
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: December 05, 2012, 05:49:05 pm »
But the touchpad doesn't, have to investigate that further, but it's hard without any hardware-debugging like scope..
This ?
http://ndlessly.wordpress.com/2012/04/09/introducing-ocd-the-ti-nspire-on-calc-debugger/

293
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 26, 2012, 03:27:14 pm »
Does your kernel support initrds?
Which output format did you choose for buildroot?
Okay, so I'm not dumb.

I did not choosed any format. What should I specify in order to generate an initrd that the kernel will launch like you managed to do today (even if the framebuffer doesn't work) ?

Thanks.

294
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 25, 2012, 02:05:46 pm »
If you want to use an initrd, use tangrs first bootloader script, before USB was working.
I think it was "root=/dev/mem".
Indeed, cmdline root=/dev/ram

But this does not help, same kernel panic as before...
Here is what I do after buildroot finished :

mv buildroot/output/target/rootfs.tns initrd.tns

> send to calc
> script :
Code: [Select]
kernel linux/zImage.tns
initrd linux/initrd.tns
cmdline root=/dev/ram
boot

295
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 25, 2012, 12:45:13 pm »
Quote
Am I missing something ?
Yes, you need the bootscript from tangrs.
You don't give the kernel the parameter "root=/dev/sda" or "root=/dev/sda1".

I think I may have had misunderstood.
My Initial question was talking about no-usb-related mehtod to load personnal stuff.
So, I may not have usb drives connected to it. Is there any way to produce a valid initrd like the one tangrs gave but with personnal stuff (again, without launching it via usb) ?

296
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 25, 2012, 10:35:55 am »
oh, i have some problems with the final steps,
root@noobnonin-GN670AA-ABM-SG3110LA:~/linux# make zimage -j
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig Kconfig
make: arm-none-eabi-gcc: Command not found
make: *** No rule to make target `zimage'.  Stop.
root@noobnonin-GN670AA-ABM-SG3110LA:~/linux# mv arch/arm/boot/zimage zimage.tns
mv: cannot stat `arch/arm/boot/zimage': No such file or directory
root@noobnonin-GN670AA-ABM-SG3110LA:~/linux#


Simply read the error.
Makefiles are case sensitive.

Also, if your arm compiler is not found, try in a terminal arm-<tab><tab> and check if it is the correct one.

Edit ;
By the way, the -j option forkbombed my pc. I recommand to use -j8 instead.

Also, compiled a zImage and used buildroot to produce a rootfs (which is initrd ?) and can't boot on it.
I have this :

my script is :
Code: [Select]
kernel linux/zImage.tns
initrd linux/initrd.tns
boot
Am I missing something ?

297
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 24, 2012, 03:15:49 am »
Quote
Here, the "build yourself" means for me to open emacs, and start coding. Is that what you wanted to say?
You could do that if you have the patience and time, but http://hackspire.unsads.com/wiki/index.php/C_and_assembly_development_introduction_on_Linux should be faster if you're not trying to compile it on a 4004 ;D
Your prefix will be arm-none-eabi-, you just have to copy the binarys created into /usr/bin, /opt/cross or whatever directory is in your $PATH.
Ah ! For sure I already have that.
But now imagine I have succesfuly compiled the kernel, how to compile stuff that is not included in that kernel ? (for example, how to you manage to add the extra-programs that are available by default when you run your kernel ?).
Maybe I've missed one post, but I cannot figure out how you're dealing with the *double* cross compiler (linux <> arm nspire <> arm linux).

298
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 23, 2012, 04:17:26 pm »
Thank you for your patience and effort. It is much appreciated.

Sadly I do not have the time for the moment (it may be so until holidays, with luck) to apply your tutorial.
I can see how things are going just by reading the steps, but some points look shadowed to me :
How to compile your kernel (not using buildroot):
1. Build yourself a cross compiler for arm (little endian), you can use buildroot and the nspire-scripts.

Here, the "build yourself" means for me to open emacs, and start coding. Is that what you wanted to say ?
I've never built any sort of kernel in the past, nor used cross compilers and have no idea of the way to go.
If you think the answer is easy to find on Google, don't waste your time to answer that point =)

Quote
9. Make cup of coffee
I cannot see the rule "cup", nor "of", nor "coffee" in the Makefile. Were you talking about the rule "some" and "tea" ?

299
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 23, 2012, 07:44:23 am »
Hi,
I'm sorry to popup like this without having the kind to read the 20 pages, but is there somewhere any information on how to
 * setup a cross compiler in order to compile files and run them on the calculator ?
 * send files or use binaries without usb adaptator (like mounting the nspire file system or something else like having an already setup kernel) ?


300
Lua / Re: Lua Q&A
« on: November 18, 2012, 06:11:02 pm »
Simply do

Code: [Select]
function SceneUpdate()
if wormhp == 0 then
level()
end
end

function level()
xp = xp + 1
end

Pages: 1 ... 18 19 [20] 21 22 ... 68