**** BEGIN LOGGING AT Fri Mar 03 03:00:01 2017 Mar 03 07:56:20 Hi, I've made a pull request for the Hello World gsoc application. Should I proceed to create a proposal on eLinux wiki ? Can someone guide me ? Mar 03 08:33:50 ravikp7: hi ! What project have you decided to work on ? Mar 03 08:34:53 zeekhuge: Porting BeagleBone USB-based bootloader server from C to js Mar 03 08:37:26 ravikp7: I think the mentors decided that being able to crosscomiple the kernel as one of the initial requirements. Mar 03 08:38:23 *crosscompile the kernel should be one of Mar 03 08:39:39 zeekhuge: On elinux wiki page, it asks to cross compile just the hello world program , so I just did it. It doesn't mention about compiling the kernel. Mar 03 08:41:10 Should I cross compile the kernel now ? Mar 03 08:41:41 That probably needs an update ... Mar 03 08:41:41 But in any case, if you are able to do kernel-crosscompiling, that would make your proposal much stronger. Mar 03 08:42:20 What's the proposal deadline ? Mar 03 08:43:01 April 3 IIRC Mar 03 08:43:05 zeekhuge: proposals submittion starts on 20 March Mar 03 08:44:59 zeekhuge: Can you guide me on cross compiling the kernel ? Mar 03 08:57:44 ravikp7: if you proceed to cross compile, and face problem, you can ask here and anyone who would know a solution will help. Mar 03 08:59:37 zeekhuge: how can I show you that I have successfully compiled the kernel ? How can I test the compiled kernel ? Mar 03 09:03:45 Like .. Ahh .. You Dont kind of need to show .. You need to do .. Mar 03 09:03:45 Though you can share the compilation log with mentors here ... Mar 03 09:04:37 Being able to figure out the right tree .. The config file and all other things will be imp. Mar 03 09:06:32 zeekhuge : Thanks Mar 03 09:06:35 And if you are able to boot that kernel ! It will be a bonus ! Mar 03 09:07:08 zeekhuge: I don't have a bb board Mar 03 09:07:22 Oh ! Okay .. Mar 03 09:07:53 zeekhuge: Can I do the same for raspberry pi ? I have one Mar 03 09:08:41 Not sure . Mar 03 09:08:41 Its about understanding the source trees and code organization of this community. Mar 03 09:08:53 Go ahead and try to crosscompile Mar 03 09:09:15 Ok, Thanks Mar 03 09:09:25 Select a particular version and try to cross compile that. Mar 03 09:09:39 ok Mar 03 10:15:38 zeekhuge: can you recommend some resources to familarize with PRU programming? Mar 03 10:16:07 uhmm .. I wrote some examples .. Mar 03 10:16:21 but there have been changes in the kernel after that .. Mar 03 10:16:23 so .. Mar 03 10:16:25 I started with your tutorials to get it running yesterday, and I would like to learn some more Mar 03 10:16:39 are TI tutorials up to date? Mar 03 10:16:51 I dont think so. Mar 03 10:17:01 depends . Mar 03 10:17:08 what do you want to do ? Mar 03 10:17:16 like what inside the PRUSS ? Mar 03 10:18:26 I decided I want to apply for PRU DMA project Mar 03 10:20:37 I would like to get familiar with PRU - ARM communication Mar 03 10:20:41 how interrupts work Mar 03 10:23:23 there was an example for that too ? isnt it ? Mar 03 10:23:42 btw, did those examples work ? Mar 03 10:23:49 what kernel version do you have ? Mar 03 10:24:05 ti 4.9 Mar 03 10:24:22 I was able to run blikny example Mar 03 10:24:33 ohkay . Mar 03 10:25:19 checkout these https://github.com/ZeekHuge/BeagleScope/tree/port_to_4.4.12-ti-r31%2B/examples/firmware_exmples Mar 03 10:25:53 ok, I will, thanks Mar 03 10:25:54 if blinky is working .. probably others will do too .. Mar 03 11:45:33 maciejjo: were you asking about the pru-sw-support package by TI ? That must be up to date I think .. Mar 03 11:53:45 I was asking about PRU hands-on labs Mar 03 11:54:15 okay so that probably is outdated .. Mar 03 11:54:52 https://git.ti.com/pru-software-support-package/pru-software-support-package/trees/master Mar 03 11:55:05 this is the package you meant? Mar 03 11:55:10 yeah ! Mar 03 11:55:42 cool, I will check this out Mar 03 11:57:58 maciejjo: probably, last year project codes is the better options for learn Mar 03 11:59:01 I saw that zeekhuge code is a great example Mar 03 12:03:08 yeah, I already have those :) Mar 03 12:07:08 maciejjo: which project do you want? Mar 03 12:09:12 I settled on PRU DMA support Mar 03 14:47:34 Hello, First of all, I would like to congratulate your organization on being selected in the GSOC program for the first time. My name is Suhrid Srivastava and I am a 4th year student of Electronics and Communications. I have been working on Embedded Systems and coding projects over the past few years, and wish to take part in the GSOC under your organization. I am new to BeagleBone, but I am pretty sure that if you can help me Mar 03 14:56:16 ssuhird : https://summerofcode.withgoogle.com/archive/2016/organizations/ Mar 03 14:57:38 https://www.google-melange.com/archive/gsoc/2015 Mar 03 14:57:50 https://www.google-melange.com/archive/gsoc/2014 Mar 03 14:57:58 https://www.google-melange.com/archive/gsoc/2013 Mar 03 14:58:46 seriously ? for the first time ? Mar 03 14:59:04 ahh .. he's gone ! Mar 03 17:23:23 I have installed angstrom cross-compiler in my Ubuntu system. But when I run "$arm-angstrom-linux-gnueabi-gcc-static -o helloworld.bin helloworld.c", its showing an error "arm-angstrom-linux-gnueabi-gcc-static: command not found".Please help me with this." Mar 03 17:25:47 siddas27: how do you compile a simple C program on your system ? Mar 03 17:25:57 I mean, what command do you use ? Mar 03 17:27:13 gcc - o hello hello.c Mar 03 17:27:47 siddas27: maybe you are just missing a space between gcc and -static Mar 03 17:27:58 thats right . So thats because you are compiling for that very system and not crosscompiling. Mar 03 17:28:33 so you just need to call arm-angstrom-linux-gnueabi-gcc Mar 03 17:28:39 not that -static thing Mar 03 17:28:50 gcc is the compiler Mar 03 17:29:21 and you are just calling a different version (kind of)of gcc Mar 03 17:29:43 I believe -static just guarantees that binary won't be dynamically linked Mar 03 17:29:50 by adding that arm-angstrom-linux-gnueabi Mar 03 17:30:20 I mean that the -static not needs to be with the gcc . it should be seperate parameter Mar 03 17:31:04 U mean I should to write "arm-angstrom-linux-gnueabi-gcc -o helloworld.bin helloworld.c" **** BEGIN LOGGING AT Fri Mar 03 17:36:59 2017 Mar 03 17:37:26 Ubuntu Mar 03 17:37:55 good choice Mar 03 17:38:28 thanks Mar 03 17:38:31 * zeekhuge looks at that nslu2-log_ ! He thought it was a bot to takes log, but there are two now ! Mar 03 17:40:49 U r 2016 tgsoc achiever, right? Mar 03 17:41:03 gsoc* Mar 03 17:50:59 pmezydlo Is there any link for ubuntu? Mar 03 17:51:51 yeah I have check it out http://exploringbeaglebone.com/chapter7/ Mar 03 17:52:34 all is the same how on Debian Mar 03 17:52:46 siddas27: ^^ Mar 03 20:36:23 hi, am salman from India ,kerala Mar 03 20:47:37 hi jotu,salman from kerala Mar 03 21:29:16 hi, all **** ENDING LOGGING AT Sat Mar 04 03:00:01 2017