2015-02-23T00:14:09 *** kiwichris has quit IRC () 2015-02-23T00:18:31 *** dr__house is now known as dr__house|away 2015-02-23T00:31:21 *** monstr has joined #rtems 2015-02-23T01:28:18 *** zoso has joined #rtems 2015-02-23T02:20:07 *** Hesham has joined #rtems 2015-02-23T07:10:38 *** antgreen has joined #rtems 2015-02-23T07:47:44 *** zoso has quit IRC (Ping timeout: 245 seconds) 2015-02-23T08:23:27 *** gedare has joined #rtems 2015-02-23T08:23:27 *** ChanServ sets mode: +o gedare 2015-02-23T08:39:40 [trac] #2276/enhancement (v:4.10) created by heshamelmatary (Embed online javascript OpenRISC emulator (jor1k) to RTEMS wepbage) http://devel.rtems.org/ticket/2276 2015-02-23T08:57:33 *** monstr has quit IRC (Remote host closed the connection) 2015-02-23T09:00:03 [trac] #2241/defect (closed) updated by Gedare Bloom (In [changeset:"83fe4468bc3b0d9008ea3a4768bceee42895b510/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2241 2015-02-23T09:00:04 [git] 83fe446 by Gedare Bloom: [psxtests: add string param to printf. closes #2241] http://devel.rtems.org/changeset/83fe446/rtems 2015-02-23T09:38:51 [trac] #2238/defect (closed) updated by Gedare Bloom (In [changeset:"1281c34a235fd031352dd43f437d84cf2c8421a7/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2238 2015-02-23T09:38:51 [git] 1281c34 by Gedare Bloom: [Use counted strnlen in bin2c. Closes #2238.] http://devel.rtems.org/changeset/1281c34/rtems 2015-02-23T09:40:30 [trac] #2276/enhancement (new) updated by amar (I'm very weary of embedding anything remote on our site. I think a prominent / ...) http://devel.rtems.org/ticket/2276 2015-02-23T09:48:15 [trac] #1401/defect (closed) updated by Till Straumann (In [changeset:"237595d86928874024c488d8e101fea4a727e9ab/rtems"]: {{{ ...) http://devel.rtems.org/ticket/1401 2015-02-23T09:48:15 [trac] #2249/defect (new) updated by Till Straumann (In [changeset:"237595d86928874024c488d8e101fea4a727e9ab/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2249 2015-02-23T09:48:16 [git] 237595d by Till Straumann: [networking: alignment exception in ioctl(SIOCGIFCONF) Access memory using a byte stream when copying to avoid unaligned access. close #1401 update #2249] http://devel.rtems.org/changeset/237595d/rtems 2015-02-23T09:49:16 [trac] #1401/defect (closed) updated by Till Straumann (In [changeset:"70148eef285bb2ad924d2e25e4b3772bba6eb23c/rtems"]: {{{ ...) http://devel.rtems.org/ticket/1401 2015-02-23T09:49:17 [git] 70148ee by Till Straumann: [networking: alignment exception in ioctl(SIOCGIFCONF) Access memory using a byte stream when copying to avoid unaligned access. update #1401] http://devel.rtems.org/changeset/70148ee/rtems 2015-02-23T09:50:02 [trac] #1401/defect (closed) updated by Till Straumann (In [changeset:"25e14e3193819f9e418d259e25f162223915114e/rtems"]: {{{ ...) http://devel.rtems.org/ticket/1401 2015-02-23T09:50:02 [git] 25e14e3 by Till Straumann: [networking: alignment exception in ioctl(SIOCGIFCONF) Access memory using a byte stream when copying to avoid unaligned access. update #1401] http://devel.rtems.org/changeset/25e14e3/rtems 2015-02-23T09:55:30 [trac] #2238/defect (closed) updated by Sebastian Huber (In [changeset:"748fbd1b3f999b29220a3665775a6f967167dc09/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2238 2015-02-23T09:55:31 [git] 748fbd1 by Sebastian Huber: [rtems-bin2c: Fix Windows build Update #2238.] http://devel.rtems.org/changeset/748fbd1/rtems 2015-02-23T10:29:40 How can I run ./configure against RTEMS-targeted tools? So for example there is a script that is supposed to compile some code (Hypercall layer that depends on POSIX) and above layers 2015-02-23T10:55:02 Hesham: I don't quite understand your question 2015-02-23T10:55:59 generally, you should provide --target= with the prefix of the tools, like --target=sparc-rtems4.11 2015-02-23T10:56:11 The rump kernel has its own configuration system that can build me a library (hypercall + drivers) 2015-02-23T10:56:35 For the hypercall, it expects some pthread headers (and implementation out there) 2015-02-23T10:56:47 But it fails to find it. 2015-02-23T10:57:04 ah. figure out how the config gets its compiler then. 2015-02-23T10:57:12 I was trying to compile this (hypercall + drivers) source 2015-02-23T10:57:22 And export CC to our toolchain 2015-02-23T10:57:40 yeah, you want to provide it with a cross-compiler somehow 2015-02-23T10:57:47 This was the config compile with our tools 2015-02-23T10:57:51 And it does 2015-02-23T10:58:07 But if fails when searching for some POSIX implementation 2015-02-23T10:58:16 i think the pthread headers should be coming through gcc via newlib 2015-02-23T10:58:29 i.e, posix_memalign 2015-02-23T10:59:00 yup that should come from newlib 2015-02-23T10:59:09 well, the header for it 2015-02-23T10:59:10 Their configure tries to compile some .c program to make sure the functions exist 2015-02-23T10:59:14 the implementation is in rtems 2015-02-23T10:59:15 ahhh 2015-02-23T10:59:18 hmmm.... 2015-02-23T10:59:36 So, should I move the source to RTEMS and build from their? 2015-02-23T10:59:50 yes it needs to link with rtems 2015-02-23T10:59:52 somehow. 2015-02-23T11:00:20 i guess it assumes you are compiling in a posix environment 2015-02-23T11:00:21 That's what I suggested, and some of them told me it needs only the headers 2015-02-23T11:00:30 this may be only suitable for "self-hosted" systems 2015-02-23T11:00:49 see if you can disable the "some .c program to make sure the functions exist" 2015-02-23T11:01:03 But when checking the log file, I can see it actually tries to compile .c file with corresponding POSIX func 2015-02-23T11:01:29 OK I will give it a try 2015-02-23T11:07:24 [trac] #2249/defect (new) updated by Jeffrey Hill (In [changeset:"344856b8adff03b48b2e2e83417e175189ba75b5/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2249 2015-02-23T11:07:24 [trac] #1401/defect (closed) updated by Jeffrey Hill (In [changeset:"344856b8adff03b48b2e2e83417e175189ba75b5/rtems"]: {{{ ...) http://devel.rtems.org/ticket/1401 2015-02-23T11:07:24 [git] 344856b by Jeffrey Hill: [rpc: misaligned address exception in get_myaddress.c updates #2249 see #1401] http://devel.rtems.org/changeset/344856b/rtems 2015-02-23T11:07:46 [trac] #2249/defect (new) updated by Jeffrey Hill (In [changeset:"2fc3deae2e55fa333368af620fb11413384619a7/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2249 2015-02-23T11:07:46 [trac] #1401/defect (closed) updated by Jeffrey Hill (In [changeset:"2fc3deae2e55fa333368af620fb11413384619a7/rtems"]: {{{ ...) http://devel.rtems.org/ticket/1401 2015-02-23T11:07:47 [git] 2fc3dea by Jeffrey Hill: [rpc: misaligned address exception in get_myaddress.c updates #2249 see #1401] http://devel.rtems.org/changeset/2fc3dea/rtems 2015-02-23T11:09:01 [trac] #2249/defect (closed) updated by Jeffrey Hill (In [changeset:"49ff36b8d76ad73ee7007ecdf86f355b610ce2b0/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2249 2015-02-23T11:09:01 [trac] #1401/defect (closed) updated by Jeffrey Hill (In [changeset:"49ff36b8d76ad73ee7007ecdf86f355b610ce2b0/rtems"]: {{{ ...) http://devel.rtems.org/ticket/1401 2015-02-23T11:09:02 [git] 49ff36b by Jeffrey Hill: [rpc: misaligned address exception in get_myaddress.c closes #2249 see #1401] http://devel.rtems.org/changeset/49ff36b/rtems 2015-02-23T11:27:55 [trac] #2248/defect (new) updated by Jeffrey Hill (In [changeset:"0f3388d1f3e98f70ebc2f15d015680747b795328/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2248 2015-02-23T11:27:55 [git] 0f3388d by Jeffrey Hill: [rpc: misaligned pointer dereference in clnt_udp.c line 363 see #2248] http://devel.rtems.org/changeset/0f3388d/rtems 2015-02-23T11:28:51 [trac] #2248/defect (closed) updated by Jeffrey Hill (In [changeset:"ced84fc0ea30d33674f56bbb174b85fc662b3f75/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2248 2015-02-23T11:28:52 [git] ced84fc by Jeffrey Hill: [rpc: misaligned pointer dereference in clnt_udp.c line 363 closes #2248] http://devel.rtems.org/changeset/ced84fc/rtems 2015-02-23T11:42:29 [trac] #2243/defect (new) updated by gedare (We should probably instead update to newer version of the upstream? ...) http://devel.rtems.org/ticket/2243 2015-02-23T12:57:02 [trac] #2276/enhancement (closed) updated by heshamelmatary (empty comment) http://devel.rtems.org/ticket/2276 2015-02-23T13:10:40 *** Hesham has quit IRC (Ping timeout: 265 seconds) 2015-02-23T13:44:20 *** antgreen has quit IRC (Ping timeout: 252 seconds) 2015-02-23T13:45:18 *** Hesham has joined #rtems 2015-02-23T13:46:02 [trac] #1695/defect (closed) updated by gedare (This is no bug. The return from rtems_rfs_rtems_error is -1 for an error code, which ...) http://devel.rtems.org/ticket/1695 2015-02-23T14:12:32 *** Hesham has quit IRC (Ping timeout: 265 seconds) 2015-02-23T14:44:15 [git] 9d090fb by Gedare Bloom: [sparc64: fix copyright notices. The sparc64 port had some incorrect copyright notices affixed to source code files.] http://devel.rtems.org/changeset/9d090fb/rtems 2015-02-23T15:31:51 *** Davidbrcz has joined #rtems 2015-02-23T16:07:11 *** gedare has quit IRC (Ping timeout: 250 seconds) 2015-02-23T16:35:15 *** kiwichris has joined #rtems 2015-02-23T17:53:22 *** Davidbrcz has quit IRC (Ping timeout: 255 seconds) 2015-02-23T18:50:51 *** dr__house|away is now known as dr__house 2015-02-23T19:01:23 *** antgreen has joined #rtems 2015-02-23T23:44:21 *** fire_ has joined #rtems 2015-02-23T23:46:02 hello everyone, I am a prospective GSOC applicant and will be applying for contributing towards rtems. Hoping that Rtems gets selected this year. 2015-02-23T23:48:48 *** dr__house is now known as dr__house|away 2015-02-23T23:50:16 *** fire_ has quit IRC (Ping timeout: 246 seconds) 2015-02-24T00:23:11 *** monstr has joined #rtems 2015-02-24T00:24:34 *** lynx` has joined #rtems 2015-02-24T00:40:47 *** kiwichris has quit IRC () 2015-02-24T00:42:30 *** zoso has joined #rtems 2015-02-24T00:50:11 *** lynx` has quit IRC (Read error: Connection reset by peer) 2015-02-24T00:53:26 *** lynx` has joined #rtems 2015-02-24T02:20:38 *** Hesham has joined #rtems 2015-02-24T07:02:44 *** antgreen has quit IRC (Ping timeout: 244 seconds) 2015-02-24T07:07:23 *** zoso has quit IRC (Ping timeout: 250 seconds) 2015-02-24T07:39:06 *** linuxkernelhacke has quit IRC (Read error: Connection reset by peer) 2015-02-24T08:19:00 *** gedare has joined #rtems 2015-02-24T08:19:00 *** ChanServ sets mode: +o gedare 2015-02-24T08:28:01 [trac] #2276/enhancement (reopened) updated by gedare (I'd rather prefer to continue this discussion and see what we can do with it. Having ...) http://devel.rtems.org/ticket/2276 2015-02-24T08:28:41 [trac] #2276/enhancement (reopened) updated by gedare (empty comment) http://devel.rtems.org/ticket/2276 2015-02-24T08:32:18 [trac] #2276/enhancement (reopened) updated by amar (I'm not against linking to it, embedding it is a bad idea as it puts a service on ...) http://devel.rtems.org/ticket/2276 2015-02-24T08:33:02 [trac] #2276/enhancement (reopened) updated by heshamelmatary (OK, AFAIK, all the javascript and jor1k simulator code is open source and at github, ...) http://devel.rtems.org/ticket/2276 2015-02-24T09:14:27 *** zoso has joined #rtems 2015-02-24T09:15:25 [trac] #2182/defect (new) updated by gedare (XSI requires CLOCKS_PER_SEC to be one million. If we don't care about XSI ...) http://devel.rtems.org/ticket/2182 2015-02-24T09:21:04 *** zoso has quit IRC (Ping timeout: 245 seconds) 2015-02-24T09:29:49 [trac] 0001-posix-fix-error-return-code-for-pthread_mutex_tryloc.patch (Possible Fix) attached to #2170 by gedare http://devel.rtems.org/ticket/2170 2015-02-24T09:30:33 [trac] #2170/defect (new) updated by gedare (The attached patch replaces EDEADLK with EBUSY directly in trylock().) http://devel.rtems.org/ticket/2170 2015-02-24T09:41:33 verm__: can you have a look at https://devel.rtems.org/ticket/2147 and see if we are missing some history there? 2015-02-24T10:09:43 *** zoso has joined #rtems 2015-02-24T10:45:46 *** Davidbrcz has joined #rtems 2015-02-24T10:58:45 *** dr__house|away is now known as dr__house 2015-02-24T11:01:45 *** zoso has quit IRC (Ping timeout: 246 seconds) 2015-02-24T11:53:42 [trac] #2229/defect (closed) updated by Chris Johns (In [changeset:"ee87007748e44aeedad7cbb6a4465714a323961c/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2229 2015-02-24T11:53:43 [git] ee87007 by Chris Johns: [Panic on RTEMS_FAST_MUTEX network semaphore claim/release. Fix the code to panic rather than perform a bad access if the network semaphore is accessed without the stack being intialised. Closes #2229.] http://devel.rtems.org/changeset/ee87007/rtems 2015-02-24T14:07:21 *** monstr has quit IRC (Remote host closed the connection) 2015-02-24T14:12:52 *** Hesham has quit IRC (Ping timeout: 255 seconds) 2015-02-24T14:31:47 *** Davidbrcz has quit IRC (Ping timeout: 256 seconds) 2015-02-24T14:44:03 *** Davidbrcz has joined #rtems 2015-02-24T15:15:50 *** Davidbrcz has quit IRC (Ping timeout: 246 seconds) 2015-02-24T15:18:09 *** Hesham has joined #rtems 2015-02-24T15:34:49 *** Hesham has quit IRC (Ping timeout: 252 seconds) 2015-02-24T15:42:18 *** kiwichris has joined #rtems 2015-02-24T15:43:08 hi kiwichris 2015-02-24T15:44:07 gedare, hi 2015-02-24T15:44:23 kiwichris: if you have some time i'd like to get some more eyes on https://devel.rtems.org/ticket/1247 2015-02-24T15:44:50 see if it is still a problem, and whether we should adopt till's patches to current newlib 2015-02-24T15:46:28 I am not sure about this ticket. I know Sebastian has added locking in libcsupport and I seem to remember some changes in newlib. We should ask Sebastian. 2015-02-24T15:46:35 Okay. 2015-02-24T15:46:56 I will send a quick email before I "clock out". 2015-02-24T15:49:06 trying to go through tickets while i wait on my compile-execute part of debugging. 2015-02-24T15:49:12 made some good progress. 2015-02-24T15:49:45 Bye 2015-02-24T15:54:25 *** gedare has quit IRC (Ping timeout: 264 seconds) 2015-02-24T15:56:40 *** Davidbrcz has joined #rtems 2015-02-24T16:38:37 *** Davidbrcz has quit IRC (Ping timeout: 245 seconds) 2015-02-24T17:13:41 *** dr__house is now known as dr__house|away 2015-02-24T17:58:26 *** gedare has joined #rtems 2015-02-24T17:58:27 *** ChanServ sets mode: +o gedare 2015-02-24T18:03:52 *** gedare has quit IRC (Ping timeout: 240 seconds) 2015-02-24T18:31:16 [trac] #2170/defect (new) updated by nick.withers (Works for me - thanks! (A little embarrassed now though :-P)) http://devel.rtems.org/ticket/2170 2015-02-24T18:52:08 [trac] #2170/defect (new) updated by joel.sherrill (Answering on my phone but don't forget this impacts tests and documentation. ...) http://devel.rtems.org/ticket/2170 2015-02-24T19:04:59 *** gigetoo has quit IRC (Ping timeout: 250 seconds) 2015-02-24T19:12:23 *** gigetoo has joined #rtems 2015-02-24T19:16:53 *** Schoumi has quit IRC (*.net *.split) 2015-02-24T19:20:19 *** Schoumi has joined #rtems 2015-02-24T19:24:58 *** stryx`_ is now known as stryx` 2015-02-24T19:35:27 *** notbmatt has quit IRC (*.net *.split) 2015-02-24T19:35:27 *** kiwichris has quit IRC (*.net *.split) 2015-02-24T19:35:29 *** diginet has quit IRC (*.net *.split) 2015-02-24T19:39:15 *** kiwichris has joined #rtems 2015-02-24T19:39:15 *** diginet has joined #rtems 2015-02-24T19:39:15 *** notbmatt has joined #rtems 2015-02-24T19:40:18 *** notbmatt has quit IRC (*.net *.split) 2015-02-24T19:40:19 *** kiwichris has quit IRC (*.net *.split) 2015-02-24T19:40:21 *** diginet has quit IRC (*.net *.split) 2015-02-24T19:40:45 *** geheimnis` has quit IRC (*.net *.split) 2015-02-24T19:41:30 *** kiwichris has joined #rtems 2015-02-24T19:41:30 *** diginet has joined #rtems 2015-02-24T19:41:30 *** notbmatt has joined #rtems 2015-02-24T19:59:26 *** geheimnis` has joined #rtems 2015-02-24T20:10:43 *** geheimnis` has quit IRC (*.net *.split) 2015-02-24T20:16:22 *** geheimnis` has joined #rtems 2015-02-24T20:17:17 *** geheimnis` has joined #rtems 2015-02-24T21:13:28 *** fire_ has joined #rtems 2015-02-24T21:29:24 *** antgreen has joined #rtems 2015-02-24T21:30:44 *** fire_ has quit IRC (Quit: Page closed) 2015-02-24T21:34:11 *** dr__house|away is now known as dr__house 2015-02-24T23:33:13 *** kiwichris has quit IRC () 2015-02-24T23:47:14 *** dr__house is now known as dr__house|away 2015-02-24T23:48:24 *** monstr has joined #rtems 2015-02-25T00:10:41 *** zoso has joined #rtems 2015-02-25T01:21:01 *** kiwichris has joined #rtems 2015-02-25T01:54:09 *** lynx` has quit IRC (Remote host closed the connection) 2015-02-25T02:35:08 [trac] #2182/defect (new) updated by sebastian.huber (We should definitely fix this so that we are in line with Linux and BSD.) http://devel.rtems.org/ticket/2182 2015-02-25T02:46:09 *** Hesham has joined #rtems 2015-02-25T03:46:24 [git] 01a4192 by Adit Sahasrabudhe: [Modified waf scripts to have a minimum python version requirement of 2.6.6, instead of 2.7.3] http://devel.rtems.org/changeset/01a4192/rtems-tools 2015-02-25T03:47:19 [trac] #2275/defect (new) updated by chrisj (I have applied this patch. Thanks. Please test and close this ticket if ...) http://devel.rtems.org/ticket/2275 2015-02-25T05:10:24 [trac] #2277/defect (v:4.10) created by chrisj (RSB download from git.rtems.org fails with SSL cert error.) http://devel.rtems.org/ticket/2277 2015-02-25T05:26:08 *** gedare has joined #rtems 2015-02-25T05:26:09 *** ChanServ sets mode: +o gedare 2015-02-25T06:20:35 *** gedare has quit IRC (Ping timeout: 246 seconds) 2015-02-25T07:11:39 *** antgreen has quit IRC (Ping timeout: 252 seconds) 2015-02-25T08:21:13 *** vipulnayyar has joined #rtems 2015-02-25T08:34:31 *** monstr has quit IRC (Remote host closed the connection) 2015-02-25T08:41:41 *** vipulnayyar has quit IRC (Quit: Leaving) 2015-02-25T09:03:59 *** Hesham has quit IRC (Ping timeout: 245 seconds) 2015-02-25T10:15:43 *** Hesham has joined #rtems 2015-02-25T10:16:05 *** zoso has quit IRC (Ping timeout: 246 seconds) 2015-02-25T10:30:01 *** vipulnayyar has joined #rtems 2015-02-25T10:36:56 *** vipulnayyar has quit IRC (Quit: Leaving) 2015-02-25T11:22:37 *** zoso has joined #rtems 2015-02-25T11:56:40 *** vipulnayyar has joined #rtems 2015-02-25T12:24:54 *** Davidbrcz has joined #rtems 2015-02-25T12:25:14 *** zoso has quit IRC (Ping timeout: 245 seconds) 2015-02-25T12:35:54 *** Davidbrcz has quit IRC (Ping timeout: 264 seconds) 2015-02-25T12:36:03 *** gedare has joined #rtems 2015-02-25T12:36:04 *** ChanServ sets mode: +o gedare 2015-02-25T12:41:37 *** Hesham has quit IRC (Ping timeout: 244 seconds) 2015-02-25T13:06:55 [trac] 0001-rtems-make-MAXNAMLEN-match-with-NAME_MAX.patch (Possible Fix) attached to #1394 by gedare http://devel.rtems.org/ticket/1394 2015-02-25T13:07:53 [trac] #1394/defect (assigned) updated by gedare (Attached patch should work but I haven't tested it yet.) http://devel.rtems.org/ticket/1394 2015-02-25T13:23:03 *** Hesham has joined #rtems 2015-02-25T13:52:45 [trac] 0001-rtems-fix-CLOCKS_PER_SEC.patch (Different proposed fix for newlib.) attached to #2182 by gedare http://devel.rtems.org/ticket/2182 2015-02-25T13:53:06 [trac] 0001-libcsupport-scale-times-call-to-microseconds.patch (Corresponding fix in RTEMS for different proposed fix in newlib.) attached to #2182 by gedare http://devel.rtems.org/ticket/2182 2015-02-25T13:55:49 [trac] #2182/defect (new) updated by gedare (I added two patches (untested) that may fix the bug. I'm a little bit confused about ...) http://devel.rtems.org/ticket/2182 2015-02-25T13:59:33 [trac] 0001-posix-fix-error-return-code-for-pthread_mutex_tryloc.patch (Possible Fix) deleted from #2170 by gedare http://devel.rtems.org/ticket/2170 2015-02-25T13:59:33 [trac] 0001-posix-fix-error-return-code-for-pthread_mutex_tryloc.patch (Fix with doc change.) attached to #2170 by gedare http://devel.rtems.org/ticket/2170 2015-02-25T14:01:06 [trac] #2170/defect (closed) updated by Gedare Bloom (In [changeset:"c0e01a28dad77063d8edb7f7fe2cee83a5f09b2e/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2170 2015-02-25T14:01:06 [git] c0e01a2 by Gedare Bloom: [posix: fix error return code for pthread_mutex_trylock pthread_mutex_trylock() should return EBUSY if the mutex is already locked. The translations of CORE_MUTEX_STATUS_NESTING_NOT_ALLOWED is EDEADLK which is correct for pthread_mutex_lock(). This fixes the translation for trylock. Closes #2170.] 2015-02-25T14:01:06 http://devel.rtems.org/changeset/c0e01a2/rtems 2015-02-25T14:33:23 *** Hesham has quit IRC (Ping timeout: 246 seconds) 2015-02-25T14:52:08 *** dr__house|away is now known as dr__house 2015-02-25T14:56:24 *** Davidbrcz has joined #rtems 2015-02-25T15:30:57 *** antgreen has joined #rtems 2015-02-25T16:34:24 *** kiwichris has quit IRC (Ping timeout: 245 seconds) 2015-02-25T16:42:52 *** gedare has quit IRC (Ping timeout: 240 seconds) 2015-02-25T16:48:15 *** Davidbrcz has quit IRC (Ping timeout: 256 seconds) 2015-02-25T16:52:02 *** kiwichris has joined #rtems 2015-02-25T21:11:43 *** notbmatt has quit IRC (Remote host closed the connection) 2015-02-25T23:29:31 *** monstr has joined #rtems 2015-02-25T23:58:58 *** zoso has joined #rtems 2015-02-26T00:13:14 *** zoso has quit IRC (Read error: Connection reset by peer) 2015-02-26T00:21:07 *** dr__house is now known as dr__house|away 2015-02-26T00:30:00 *** kiwichris has quit IRC () 2015-02-26T02:02:03 *** sebhub has joined #rtems 2015-02-26T02:15:43 *** Hesham has joined #rtems 2015-02-26T03:17:09 [git] 9b8c76d by Sebastian Huber: [Add GCC patches for rtems-4.11/powerpc] http://devel.rtems.org/changeset/9b8c76d/rtems-source-builder 2015-02-26T03:21:00 [git] bd1c924 by Sebastian Huber: [sptests/sp76: Check that the right task executes] http://devel.rtems.org/changeset/bd1c924/rtems 2015-02-26T03:33:54 *** kiwichris has joined #rtems 2015-02-26T04:50:07 [trac] #2270/enhancement (accepted) updated by daniel (As I recall it GCC-4.0/4.1 and possible also 4.2 had a known bug generating FP ...) http://devel.rtems.org/ticket/2270 2015-02-26T05:39:45 *** kiwichris has quit IRC (Ping timeout: 265 seconds) 2015-02-26T05:49:47 *** monstr has quit IRC (Remote host closed the connection) 2015-02-26T05:56:25 [trac] #2170/defect (closed) updated by Sebastian Huber (In [changeset:"6357e14aac7ad9928b81db157d4b0b5506a9d993/rtems"]: {{{ ...) http://devel.rtems.org/ticket/2170 2015-02-26T05:56:26 [git] 6357e14 by Sebastian Huber: [psxtests/psx05: Adjust test case Update #2170.] http://devel.rtems.org/changeset/6357e14/rtems 2015-02-26T06:57:44 *** sebhub has quit IRC (Quit: Konversation terminated!) 2015-02-26T07:04:54 *** antgreen has quit IRC (Ping timeout: 256 seconds) 2015-02-26T07:31:08 *** cdesai has quit IRC (Ping timeout: 252 seconds) 2015-02-26T07:36:03 *** cdesai has joined #rtems 2015-02-26T08:38:50 *** gedare has joined #rtems 2015-02-26T08:38:51 *** ChanServ sets mode: +o gedare 2015-02-26T10:42:08 ... is danielh really posting 111 patches to the ml right now? :o 2015-02-26T10:43:34 ahh this is the epic leon2/3 merge 2015-02-26T10:46:00 i had to approve two 2015-02-26T10:46:15 one was 380k the other 640k 2015-02-26T10:46:28 yipes. 2015-02-26T10:46:33 thanks 2015-02-26T10:46:37 we're putting out quite a bit of bandwidth heh 2015-02-26T10:46:40 on our MTA 2015-02-26T10:46:44 i bet 2015-02-26T10:46:54 about 140mbit 2015-02-26T10:47:03 it's done now 2015-02-26T11:57:49 *** Davidbrcz has joined #rtems 2015-02-26T12:39:12 *** Hesham has quit IRC (Ping timeout: 272 seconds) 2015-02-26T13:10:04 *** Hesham has joined #rtems 2015-02-26T13:20:07 [trac] waf edited by amar (Add stub pages) http://devel.rtems.org/wiki/waf 2015-02-26T13:28:24 [trac] PageTemplates/DefaultPage edited by amar (Make the replaceables more clear.) http://devel.rtems.org/wiki/PageTemplates/DefaultPage 2015-02-26T13:31:18 [trac] waf/Config created http://devel.rtems.org/wiki/waf/Config 2015-02-26T13:32:55 [trac] waf/Docs created http://devel.rtems.org/wiki/waf/Docs 2015-02-26T13:33:58 [trac] waf/GUI created http://devel.rtems.org/wiki/waf/GUI 2015-02-26T13:34:39 [trac] waf/Eclipse created http://devel.rtems.org/wiki/waf/Eclipse 2015-02-26T13:35:23 [trac] waf/Windows created http://devel.rtems.org/wiki/waf/Windows 2015-02-26T13:46:05 *** dr__house|away is now known as dr__house 2015-02-26T13:55:53 I submitted patches to Adapteva binutils/gdb repo and was merged, the GCC pull request will be merged soon hopefully. Next is referring to them from RSB and submit patches for building the Epiphany toolchain. 2015-02-26T13:57:19 I may also be working on risc-v HW, probably RTEMS/risc-v port would be useful for me 2015-02-26T14:05:49 great 2015-02-26T14:06:27 you're just a porting fanatic now, eh? 2015-02-26T14:12:40 It's because of I'll work mainly on MicroBlaze + risc-v (not sure yet), and I need an RTOS to run above them 2015-02-26T14:14:35 So, porting RTEMS to a newly developed HW system will ensure that the HW is w robust enough. 2015-02-26T14:32:53 *** Hesham has quit IRC (Ping timeout: 246 seconds) 2015-02-26T15:13:11 *** gedare has quit IRC (Ping timeout: 246 seconds) 2015-02-26T16:37:43 *** kiwichris has joined #rtems 2015-02-26T17:40:01 *** Davidbrcz has quit IRC (Ping timeout: 252 seconds) 2015-02-26T18:56:26 *** beng-nl has quit IRC (Ping timeout: 246 seconds) 2015-02-26T18:56:34 *** beng-nl has joined #rtems 2015-02-26T19:18:08 [trac] #2270/enhancement (accepted) updated by chrisj (Thanks Daniel for the detailed update. A few observations.. I think any required ...) http://devel.rtems.org/ticket/2270 2015-02-26T23:20:54 *** dr__house is now known as dr__house|away 2015-02-27T00:01:56 *** monstr has joined #rtems 2015-02-27T00:10:51 *** SH__ has joined #rtems 2015-02-27T01:04:09 *** kiwichris has quit IRC () 2015-02-27T02:13:22 *** sebhub has joined #rtems 2015-02-27T02:45:38 *** Hesham has joined #rtems 2015-02-27T04:57:43 [git] 63e91fe by Martin Galvan: [ARM: Fix _ARMV4_Exception_fiq_default In _ARMV4_Exception_fiq_default, set the F bit of the SPSR so that when it gets loaded back to the CPSR in save_more_context it won't re-enable the FIQs. Tested on a TMS570LS3137.] http://devel.rtems.org/changeset/63e91fe/rtems 2015-02-27T05:07:55 [git] 991fdb3 by Martin Galvan: [ARM: Add BSP_START_NEEDS_REGISTER_INITIALIZATION This patch adds the macro BSP_START_NEEDS_REGISTER_INITIALIZATION and three hooks for BSP-specific register init code to arm/shared/start.S. Said hooks are bsp_start_init_registers_core (intended for initializing the ARM core registers), bsp_start_init_registers_banked_fiq (for 2015-02-27T05:07:55 the FIQ mode banked registe...] http://devel.rtems.org/changeset/991fdb3/rtems 2015-02-27T06:32:04 *** monstr has quit IRC (Remote host closed the connection) 2015-02-27T06:51:37 *** sebhub has quit IRC (Quit: Konversation terminated!) 2015-02-27T07:56:36 *** gedare has joined #rtems 2015-02-27T07:56:36 *** ChanServ sets mode: +o gedare 2015-02-27T10:25:23 *** dr__house|away is now known as dr__house 2015-02-27T10:39:46 *** antgreen has joined #rtems 2015-02-27T11:37:28 [trac] rtems.uncrustify (Uncrustify configuration for RTEMS Style) attached to #Developer/Coding/Conventions by gedare http://devel.rtems.org/ticket/Developer/Coding/Conventions 2015-02-27T11:39:40 [trac] Developer/Coding/Conventions edited by gedare (Fix link to rtems.uncrustify file.) http://devel.rtems.org/wiki/Developer/Coding/Conventions 2015-02-27T13:50:57 *** kiwichris has joined #rtems 2015-02-27T14:49:37 *** Hesham has quit IRC (Ping timeout: 264 seconds) 2015-02-27T15:17:36 *** Hesham has joined #rtems 2015-02-27T15:29:27 *** Hesham has quit IRC (Read error: Connection reset by peer) 2015-02-27T15:29:29 *** Hesham1 has joined #rtems 2015-02-27T16:06:04 *** gedare has quit IRC (Ping timeout: 245 seconds) 2015-02-27T16:17:49 *** Hesham1 has quit IRC (Ping timeout: 264 seconds) 2015-02-27T17:05:07 *** Davidbrcz has joined #rtems 2015-02-27T18:04:24 *** Davidbrcz has quit IRC (Ping timeout: 256 seconds) 2015-02-27T23:59:34 *** dr__house is now known as dr__house|away 2015-02-28T03:49:18 *** Hesham has joined #rtems 2015-02-28T04:50:27 *** Davidbrcz has joined #rtems 2015-02-28T06:55:56 *** Davidbrcz has quit IRC (Ping timeout: 246 seconds) 2015-02-28T08:26:05 *** Davidbrcz has joined #rtems 2015-02-28T08:47:58 *** Davidbrcz has quit IRC (Ping timeout: 264 seconds) 2015-02-28T13:49:53 *** Davidbrcz has joined #rtems 2015-02-28T14:07:12 *** dr__house|away is now known as dr__house 2015-02-28T14:27:41 *** Hesham has quit IRC (Ping timeout: 252 seconds) 2015-02-28T17:30:52 *** Davidbrcz has quit IRC (Ping timeout: 240 seconds) 2015-02-28T19:48:07 *** ita has quit IRC (Remote host closed the connection) 2015-02-28T23:32:40 *** dr__house is now known as dr__house|away 2015-03-01T02:05:25 *** Hesham has joined #rtems 2015-03-01T05:04:23 *** Davidbrcz has joined #rtems 2015-03-01T05:22:10 *** Davidbrcz has quit IRC (Ping timeout: 272 seconds) 2015-03-01T06:39:05 *** diginet has quit IRC (Quit: diginet has quit!) 2015-03-01T06:42:16 *** diginet has joined #rtems 2015-03-01T07:38:39 *** Davidbrcz has joined #rtems 2015-03-01T10:52:01 *** antgreen has quit IRC (Ping timeout: 264 seconds) 2015-03-01T11:28:47 *** Davidbrcz has quit IRC (Ping timeout: 264 seconds) 2015-03-01T12:44:51 *** Davidbrcz has joined #rtems 2015-03-01T13:19:50 *** Hesham has quit IRC (Ping timeout: 246 seconds) 2015-03-01T13:51:31 *** Hesham has joined #rtems 2015-03-01T14:02:15 *** dr__house|away is now known as dr__house 2015-03-01T14:55:20 *** Hesham has quit IRC (Ping timeout: 272 seconds) 2015-03-01T15:15:40 *** kiwichris has quit IRC () 2015-03-01T15:40:43 *** kiwichris has joined #rtems 2015-03-01T17:30:47 *** verm__ has quit IRC (Remote host closed the connection) 2015-03-01T17:38:51 *** Davidbrcz has quit IRC (Ping timeout: 256 seconds) 2015-03-01T18:21:53 *** antgreen has joined #rtems 2015-03-01T18:32:47 *** verm__ has joined #rtems 2015-03-01T19:14:02 *** lynx` has joined #rtems 2015-03-01T23:58:39 *** dr__house is now known as dr__house|away