Displaying 20 results from an estimated 51 matches for "neele".
Did you mean:
neale
2009 Jul 03
1
[LLVMdev] llvm-gcc cross compiler for ARM Linux failing
Hello Anton,
Thanks for replying.
The message "as: unrecognized option `-mcpu=cortex-a8'"
is the same message I get when I just enter:
as -mcpu=cortex-a8
So I think I llvm-gcc is using the Linux i386 assembler to assemble
ARM code. Not good. What assembler is it supposed to use? The one in
CodeSourcery?
> But how's assembler actually called? Just try to compile
2009 Jun 29
0
[LLVMdev] configuring cross compiler for Mac to Linux on ARM
Hello,
I am trying to cross compile LLVM.
Build and compile on Mac OS X 10.5.7
Target is an Angstrom Linux Cortex-A8 Beagle board.
I would like to avoid GPLv3.
I can compile. But when I run my executable on Beagle crt0.S is
calling an AngelSWI to
setup the heap and stack. But the AngelSWI seems to just be a stub
because it returns zeros for the pointers. That leads to a segfault.
If I hack in
2009 Jul 03
0
[LLVMdev] llvm-gcc cross compiler for ARM Linux failing
Hi, Neel
> I suspect it is using the wrong assembler. But when I do llvm-gcc -v I
> can see it has:
>
> --with-gnu-as=/home/neel/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-as
But how's assembler actually called? Just try to compile something
with extra -v option added
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg
2009 Jul 03
4
[LLVMdev] llvm-gcc cross compiler for ARM Linux failing
I suspect that my llvm-gcc cross compiler is using the wrong
assembler because it does not recognize "-mcpu=cortex-a8".
I was trying to build a cross compiler for a Mac host. Now I am trying
to build on x86_64 Linux. I am targeting a Beagle board with an ARM
Cortex-A8 and Angstrom Linux.
TRIED: to use the script in llvm/utils/crosstool/ARM/build-install-linux.sh
I used the recommended
2007 Feb 27
1
chan_sip.c:10173 handle_response: Dont know how to handle a 202 Accepted respons
What does this mean? Asterisk 1.2.13 talking to 1.4.0. (response from
1.4.0.)
Yuan Liu
2005 Mar 26
5
Click-to-Talk with Asterisk?
Hi Nitesh,
Take a look at this
http://www.microappliances.com/site/html/index.php?section=Products&page
=clienthowto.php
I've never implemented it though so I would appreciate some feedback on
if it works.
Cheers,
Dean
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Nitesh
Divecha
Sent: Saturday,
2005 Jul 18
5
TDM04B - Takes long to initialize...
Hello All,
I got my TDM04B card installed and configured.
Everything works fine I can receive calls and route to appropriate
extensions.
The only problem I am facing is Slowness.
When I dial the PSTN number which is connected to Zap 1-1 after two
ring it answers and then run the AGI script. What I did was assign it
to a specific extension. So all inbound call on that PSTN number
should
2012 Sep 14
2
plotting points on a map, assigning vectors to values from dataset
...ooks all right so far to me...)
I hope you understand my problem, and like I said, it is probably something
very easy and clear. I found lots of info about point, pch, bg etc., but not
of how to automatically assign values to points using a data file.
I am grateful for any comment!
Best wishes,
Neele
library(maps)
library(mapdata)
map = read.delim("C:/Users/Neele/Desktop/number_of_modals.txt", header=TRUE)
map$longitude=gsub(",",".",map$longitude)
map$longitude=as.numeric(as.character(map$longitude))
map$latitude=gsub(",",".",map$latitude)
m...
2009 Jul 03
0
[LLVMdev] llvm-gcc cross compiler for ARM Linux failing
On Jul 2, 2009, at 6:24 PM, Neel Nagar wrote:
> I suspect that my llvm-gcc cross compiler is using the wrong
> assembler because it does not recognize "-mcpu=cortex-a8".
This is a known problem. We've only added support for ARMv7
(including cortex-a8) in llvm in the last week or so, and the
associated changes for llvm-gcc are still pending. Unless you need
specific
2008 May 08
1
MOH and Licensed G729 codec
Hello All,
Recently, I build three Asterisk 1.4 box and installed licensed copy of
G729 codec. Before installing the G729 codec I tested the MOH on all
three Asterisks box and it was working fine. So I install G729 codec and
retested MOH and it was all wavy... Meaning the music was going up and
down and missing bits and pieces and choppy...
Any idea what did I do wrong? The MOH files are the
2015 Mar 27
1
Channel Device virConnectListAllNodeDevices
Hello,
I've added a Channel Device through virt-manager GUI. virsh dumpxml shows
the device as.
<channel type='unix'>
<source mode='bind'
path='/var/lib/libvirt/qemu/channel/target/ubuntusaucy.marx'/>
<target type='virtio' name='marx'/>
<alias name='channel2'/>
<address
2009 Nov 10
0
[LLVMdev] speed up memcpy intrinsic using ARM Neon registers
On Nov 9, 2009, at 7:34 PM, Neel Nagar wrote:
> I tried to speed up Dhrystone on ARM Cortex-A8 by optimizing the
> memcpy intrinsic. I used the Neon load multiple instruction to move up
> to 48 bytes at a time . Over 15 scalar instructions collapsed down
> into these 2 Neon instructions.
>
> fldmiad r3, {d0, d1, d2, d3, d4, d5} @ SrcLine dhrystone.c 359
> fstmiad
2007 Mar 07
1
Asterisk Registering to other SIP servers.
Hello,
I am trying to REGISTER asterisk to a SIP server, which is listening on Port
6060 (not 5060).
The sip.conf file contains
register=18474201111:quintum@192.168.2.94:6060/18474201111
maxexpirey=3600
defaultexpirey=120
But the REGISTER message is sent to Port 6060, but the Request-URI still
contains, 5060. This is being rejected by SIP server.
REGISTER sip:192.168.2.94
2009 Nov 10
4
[LLVMdev] speed up memcpy intrinsic using ARM Neon registers
I tried to speed up Dhrystone on ARM Cortex-A8 by optimizing the
memcpy intrinsic. I used the Neon load multiple instruction to move up
to 48 bytes at a time . Over 15 scalar instructions collapsed down
into these 2 Neon instructions.
fldmiad r3, {d0, d1, d2, d3, d4, d5} @ SrcLine dhrystone.c 359
fstmiad r1, {d0, d1, d2, d3, d4, d5}
It seems like this should be faster. But I did
2008 Mar 27
3
kernel memory and zfs
We have a 32 GB RAM server running about 14 zones. There are multiple databases, application servers, web servers, and ftp servers running in the various zones.
I understand that using ZFS will increase kernel memory usage, however I am a bit concerned at this point.
root at servername:~/zonecfg #mdb -k
Loading modules: [ unix krtld genunix specfs dtrace uppc pcplusmp ufs md mpt ip indmux ptm
2009 Feb 02
8
ZFS core contributor nominations
The time has come to review the current Contributor and Core contributor
grants for ZFS. Since all of the ZFS core contributors grants are set
to expire on 02-24-2009 we need to renew the members that are still
contributing at core contributor levels. We should also add some new
members to both Contributor and Core contributor levels.
First the current list of Core contributors:
Bill
2015 Mar 19
2
pty pairing host - guest
HI!,
I am using virt-manager GUI. There I can add a `Console Device` through
Add Hardware. I can add a virtio pty WITHOUT restarting the VM. also I get
a pty allocated to host machine say `/dev/pty/M`
My expectation is this `host:/dev/pty/M` is connected with a
`guest:/dev/ttyN`. so If I open minicom or screen and write to
`host:/dev/pty/M` it will be propagated to 'guest:/dev/ttyN'. Is
2007 Sep 18
0
arcstat - a tool to print ARC statistics
I wrote a simple tool to print out the ARC statistics exported via
kstat. Details at
http://blogs.sun.com/realneel/entry/zfs_arc_statistics
-neel
--
---
Neelakanth Nadgir PAE Performance And Availability Eng
2005 Mar 02
0
Call Forwarding to Cell Phone, Pager, etc
Yes.
http://lists.digium.com/pipermail/asterisk-users/2005-February/087538.ht
ml
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Nitesh
Divecha
Sent: Wednesday, March 02, 2005 2:56 PM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: [Asterisk-Users] Call Forwarding to Cell Phone,
2005 Mar 03
2
Attended Transfer (ATXFER) with CVS asterisk r 1_
Hi,
I successfully installed asterisk 1.0 with Capi 0.35. In my pbx system I
would like to use the atxfer function but is not included in the stable
asterisk.
Is there a way to include it in my version of asterisk: I did no used the
last cvs because I can't compile the chan_capi .in it. :(
Bye