missing an image filename Cross compiling for ARM9
Posted: 2008-07-05T04:39:24-07:00
Hi,
I am trying to cross compile image magick for Arm. Although I am able to successfully compile it, but when i execute the convert command, i get the following error:
mx27#>convert -size 720x20 -background black -fill white -label "`date`" label.yuv
convert: missing an image filename `label.yuv'
The above command works for X86-PC. But is not working for Arm. The command just creates a YUV file with a date stamp.
I think i m doing something wrong while configuring. Following is the configure I used:
./configure --host=arm-926ejs-linux \
CC=arm-926ejs-linux-gcc \
CFLAGS="" \
CXX=arm-926ejs-linux-g++ \
CXXFLAGS="" \
LD=arm-926ejs-linux-ld \
LDFLAGS="-L$ROOT_DIR/usr/lib" \
--prefix=$ROOT_DIR \
--sysconfdir=$ROOT_DIR/etc \
--without-perl \
--with-xml=yes \
--without-gs-font-dir \
--without-zlib \
--without-x \
make
make install
I found a post on the internet saying that magick returns this message for any type of issues.
I also tried to strace the command and got the following output:
strace convert -size 720x20 -background black -fill white -label.yuv
execve("/bin/convert", ["convert", "-size", "720x20", "-background", "black", "-fill", "white", "-label", "Sat Jul 5 07:53:49 UTC 2008", "YUV:label.yuv"], [/* 10 vars */]) = 0
brk(0) = 0x11000
uname({sys="Linux", node="Smartvue", ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001b000
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=8767, ...}) = 0
mmap2(NULL, 8767, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4001c000
close(3) = 0
open("/lib/libMagickCore.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0P0\1\0004"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1867424, ...}) = 0
mmap2(NULL, 1748812, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40024000
mprotect(0x401bf000, 28672, PROT_NONE) = 0
mmap2(0x401c6000, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19a) = 0x401c6000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libMagickWand.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\240\364\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1657719, ...}) = 0
mmap2(NULL, 1600664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x401cf000
mprotect(0x4034d000, 28672, PROT_NONE) = 0
mmap2(0x40354000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17d) = 0x40354000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\10K\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=101377, ...}) = 0
mmap2(NULL, 107028, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40356000
mprotect(0x40365000, 32768, PROT_NONE) = 0
mmap2(0x4036d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf) = 0x4036d000
mmap2(0x4036f000, 4628, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4036f000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libdl.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\214\v\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=14611, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001f000
mmap2(NULL, 41128, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40371000
mprotect(0x40373000, 28672, PROT_NONE) = 0
mmap2(0x4037a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x4037a000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0`2\0\0004"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=495517, ...}) = 0
mmap2(NULL, 475296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x4037c000
mprotect(0x403e8000, 28672, PROT_NONE) = 0
mmap2(0x403ef000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6b) = 0x403ef000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libc.so.6", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\270T\1\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1342339, ...}) = 0
mmap2(NULL, 1127176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x403f1000
mprotect(0x404f8000, 28672, PROT_NONE) = 0
mmap2(0x404ff000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x106) = 0x404ff000
mmap2(0x40502000, 8968, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40502000
close(3) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40020000
syscall_983045(0x400204c0, 0x400204c0, 0x40023054, 0x40020b78, 0x40, 0x40023054, 0, 0, 0x40023728, 0x8034, 0x40023000, 0xbe99ab58, 0, 0xbe99a8c8, 0x40013db4, 0x4000205c, 0x20000010, 0x400204c0, 0xbf48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) = 0
mprotect(0x404ff000, 4096, PROT_READ) = 0
mprotect(0x403ef000, 4096, PROT_READ) = 0
mprotect(0x4037a000, 4096, PROT_READ) = 0
mprotect(0x4036d000, 4096, PROT_READ) = 0
mprotect(0x40022000, 4096, PROT_READ) = 0
munmap(0x4001c000, 8767) = 0
epoll_wait(0x400200c8, 0x400204c0, 0x40020080, 0x40ec) = 1829
rt_sigaction(SIGRTMIN, {0x4035a648, [], SA_SIGINFO|0x4000000}, NULL, = 0
rt_sigaction(SIGRT_1, {0x4035a538, [], SA_RESTART|SA_SIGINFO|0x4000000}, NULL, = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN 33], NULL, = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
_sysctl({{CTL_KERN, KERN_VERSION}, 2, 0xbe99ab00, 38, (nil), 0}) = 0
time(NULL) = 1215244431
getcwd("/", 4096) = 2
readlink("/proc/1829/exe", "/bin/convert", 4096) = 12
stat64("/bin/convert", {st_mode=S_IFREG|0755, st_size=8002, ...}) = 0
access("/bin/convert", F_OK) = 0
rt_sigprocmask(SIG_BLOCK, [ABRT], NULL, = 0
rt_sigaction(SIGABRT, {0x40109cac, [ABRT], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [ABRT], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [FPE], NULL, = 0
rt_sigaction(SIGFPE, {0x40109cac, [FPE], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [FPE], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [HUP], NULL, = 0
rt_sigaction(SIGHUP, {0x40109cac, [HUP], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [HUP], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [INT], NULL, = 0
rt_sigaction(SIGINT, {0x40109cac, [INT], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [INT], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [QUIT], NULL, = 0
rt_sigaction(SIGQUIT, {0x40109cac, [QUIT], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [QUIT], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [TERM], NULL, = 0
rt_sigaction(SIGTERM, {0x40109cac, [TERM], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [TERM], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [XCPU], NULL, = 0
rt_sigaction(SIGXCPU, {0x40109cac, [XCPU], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [XCPU], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [XFSZ], NULL, = 0
rt_sigaction(SIGXFSZ, {0x40109cac, [XFSZ], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [XFSZ], NULL, = 0
brk(0) = 0x11000
brk(0x32000) = 0x32000
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=8767, ...}) = 0
mmap2(NULL, 8767, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4001c000
close(3) = 0
open("/lib/libgcc_s.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\30\26\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=44432, ...}) = 0
mmap2(NULL, 66328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40505000
mprotect(0x4050e000, 28672, PROT_NONE) = 0
mmap2(0x40515000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0x40515000
close(3) = 0
munmap(0x4001c000, 8767) = 0
futex(0x4051530c, FUTEX_WAKE, 2147483647) = 0
open("/proc/meminfo", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001c000
read(3, "MemTotal: 126496 kB\nMemFre"..., 1024) = 624
close(3) = 0
munmap(0x4001c000, 4096) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("configure.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 2406
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 2406) = 2406
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("locale.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 2403
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 2403) = 2403
close(3) = 0
open("english.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 44814
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 44814) = 44814
close(3) = 0
brk(0x56000) = 0x56000
brk(0x7a000) = 0x7a000
brk(0x9b000) = 0x9b000
brk(0xbf000) = 0xbf000
brk(0xe0000) = 0xe0000
brk(0x101000) = 0x101000
brk(0x125000) = 0x125000
brk(0x146000) = 0x146000
brk(0x16a000) = 0x16a000
brk(0x18b000) = 0x18b000
brk(0x1af000) = 0x1af000
brk(0x1d0000) = 0x1d0000
brk(0x1f5000) = 0x1f5000
brk(0x216000) = 0x216000
brk(0x237000) = 0x237000
brk(0x258000) = 0x258000
brk(0x279000) = 0x279000
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
time(NULL) = 1215244432
times({tms_utime=29, tms_stime=3, tms_cutime=0, tms_cstime=0}) = 53430
times({tms_utime=29, tms_stime=3, tms_cutime=0, tms_cstime=0}) = 53430
getcwd("/", 4096) = 2
stat64("convert", 0xbe9949b8) = -1 ENOENT (No such file or directory)
stat64("YUV:label.yuv", 0xbe9929a0) = -1 ENOENT (No such file or directory)
stat64("YUV:label.yuv", 0xbe9929a0) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("coder.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 4560
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 4560) = 4560
close(3) = 0
stat64("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/modules-Q16/coders/yuv.la", 0xbe98e89c) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("delegates.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 10611
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 10611) = 10611
close(3) = 0
stat64("YUV:label.yuv", 0xbe9949b8) = -1 ENOENT (No such file or directory)
write(2, "convert: missing an image filena"..., 50convert: missing an image filename `YUV:label.yuv') = 50
write(2, ".\n", 2.
) = 2
io_submit(0x1, 0x1, 0xfbad2088 <unfinished ... exit status 1>
Any ideas why am i having this problem??
I am trying to cross compile image magick for Arm. Although I am able to successfully compile it, but when i execute the convert command, i get the following error:
mx27#>convert -size 720x20 -background black -fill white -label "`date`" label.yuv
convert: missing an image filename `label.yuv'
The above command works for X86-PC. But is not working for Arm. The command just creates a YUV file with a date stamp.
I think i m doing something wrong while configuring. Following is the configure I used:
./configure --host=arm-926ejs-linux \
CC=arm-926ejs-linux-gcc \
CFLAGS="" \
CXX=arm-926ejs-linux-g++ \
CXXFLAGS="" \
LD=arm-926ejs-linux-ld \
LDFLAGS="-L$ROOT_DIR/usr/lib" \
--prefix=$ROOT_DIR \
--sysconfdir=$ROOT_DIR/etc \
--without-perl \
--with-xml=yes \
--without-gs-font-dir \
--without-zlib \
--without-x \
make
make install
I found a post on the internet saying that magick returns this message for any type of issues.
I also tried to strace the command and got the following output:
strace convert -size 720x20 -background black -fill white -label.yuv
execve("/bin/convert", ["convert", "-size", "720x20", "-background", "black", "-fill", "white", "-label", "Sat Jul 5 07:53:49 UTC 2008", "YUV:label.yuv"], [/* 10 vars */]) = 0
brk(0) = 0x11000
uname({sys="Linux", node="Smartvue", ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001b000
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libMagickCore.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=8767, ...}) = 0
mmap2(NULL, 8767, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4001c000
close(3) = 0
open("/lib/libMagickCore.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0P0\1\0004"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1867424, ...}) = 0
mmap2(NULL, 1748812, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40024000
mprotect(0x401bf000, 28672, PROT_NONE) = 0
mmap2(0x401c6000, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19a) = 0x401c6000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libMagickWand.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libMagickWand.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\240\364\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1657719, ...}) = 0
mmap2(NULL, 1600664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x401cf000
mprotect(0x4034d000, 28672, PROT_NONE) = 0
mmap2(0x40354000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17d) = 0x40354000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\10K\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=101377, ...}) = 0
mmap2(NULL, 107028, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40356000
mprotect(0x40365000, 32768, PROT_NONE) = 0
mmap2(0x4036d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf) = 0x4036d000
mmap2(0x4036f000, 4628, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4036f000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libdl.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\214\v\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=14611, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001f000
mmap2(NULL, 41128, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40371000
mprotect(0x40373000, 28672, PROT_NONE) = 0
mmap2(0x4037a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x4037a000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0`2\0\0004"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=495517, ...}) = 0
mmap2(NULL, 475296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x4037c000
mprotect(0x403e8000, 28672, PROT_NONE) = 0
mmap2(0x403ef000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6b) = 0x403ef000
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libc.so.6", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\270T\1\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1342339, ...}) = 0
mmap2(NULL, 1127176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x403f1000
mprotect(0x404f8000, 28672, PROT_NONE) = 0
mmap2(0x404ff000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x106) = 0x404ff000
mmap2(0x40502000, 8968, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40502000
close(3) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40020000
syscall_983045(0x400204c0, 0x400204c0, 0x40023054, 0x40020b78, 0x40, 0x40023054, 0, 0, 0x40023728, 0x8034, 0x40023000, 0xbe99ab58, 0, 0xbe99a8c8, 0x40013db4, 0x4000205c, 0x20000010, 0x400204c0, 0xbf48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) = 0
mprotect(0x404ff000, 4096, PROT_READ) = 0
mprotect(0x403ef000, 4096, PROT_READ) = 0
mprotect(0x4037a000, 4096, PROT_READ) = 0
mprotect(0x4036d000, 4096, PROT_READ) = 0
mprotect(0x40022000, 4096, PROT_READ) = 0
munmap(0x4001c000, 8767) = 0
epoll_wait(0x400200c8, 0x400204c0, 0x40020080, 0x40ec) = 1829
rt_sigaction(SIGRTMIN, {0x4035a648, [], SA_SIGINFO|0x4000000}, NULL, = 0
rt_sigaction(SIGRT_1, {0x4035a538, [], SA_RESTART|SA_SIGINFO|0x4000000}, NULL, = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN 33], NULL, = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
_sysctl({{CTL_KERN, KERN_VERSION}, 2, 0xbe99ab00, 38, (nil), 0}) = 0
time(NULL) = 1215244431
getcwd("/", 4096) = 2
readlink("/proc/1829/exe", "/bin/convert", 4096) = 12
stat64("/bin/convert", {st_mode=S_IFREG|0755, st_size=8002, ...}) = 0
access("/bin/convert", F_OK) = 0
rt_sigprocmask(SIG_BLOCK, [ABRT], NULL, = 0
rt_sigaction(SIGABRT, {0x40109cac, [ABRT], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [ABRT], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [FPE], NULL, = 0
rt_sigaction(SIGFPE, {0x40109cac, [FPE], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [FPE], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [HUP], NULL, = 0
rt_sigaction(SIGHUP, {0x40109cac, [HUP], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [HUP], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [INT], NULL, = 0
rt_sigaction(SIGINT, {0x40109cac, [INT], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [INT], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [QUIT], NULL, = 0
rt_sigaction(SIGQUIT, {0x40109cac, [QUIT], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [QUIT], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [TERM], NULL, = 0
rt_sigaction(SIGTERM, {0x40109cac, [TERM], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [TERM], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [XCPU], NULL, = 0
rt_sigaction(SIGXCPU, {0x40109cac, [XCPU], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [XCPU], NULL, = 0
rt_sigprocmask(SIG_BLOCK, [XFSZ], NULL, = 0
rt_sigaction(SIGXFSZ, {0x40109cac, [XFSZ], SA_INTERRUPT|0x4000000}, {SIG_DFL}, = 0
rt_sigprocmask(SIG_UNBLOCK, [XFSZ], NULL, = 0
brk(0) = 0x11000
brk(0x32000) = 0x32000
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/v5l/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/tls/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/v5l/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/fast-mult/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/half/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/libgcc_s.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=8767, ...}) = 0
mmap2(NULL, 8767, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4001c000
close(3) = 0
open("/lib/libgcc_s.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1a\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\30\26\0\000"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=44432, ...}) = 0
mmap2(NULL, 66328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40505000
mprotect(0x4050e000, 28672, PROT_NONE) = 0
mmap2(0x40515000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0x40515000
close(3) = 0
munmap(0x4001c000, 8767) = 0
futex(0x4051530c, FUTEX_WAKE, 2147483647) = 0
open("/proc/meminfo", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4001c000
read(3, "MemTotal: 126496 kB\nMemFre"..., 1024) = 624
close(3) = 0
munmap(0x4001c000, 4096) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/configure.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("configure.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 2406
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 2406) = 2406
close(3) = 0
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/locale.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("locale.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 2403
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 2403) = 2403
close(3) = 0
open("english.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 44814
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 44814) = 44814
close(3) = 0
brk(0x56000) = 0x56000
brk(0x7a000) = 0x7a000
brk(0x9b000) = 0x9b000
brk(0xbf000) = 0xbf000
brk(0xe0000) = 0xe0000
brk(0x101000) = 0x101000
brk(0x125000) = 0x125000
brk(0x146000) = 0x146000
brk(0x16a000) = 0x16a000
brk(0x18b000) = 0x18b000
brk(0x1af000) = 0x1af000
brk(0x1d0000) = 0x1d0000
brk(0x1f5000) = 0x1f5000
brk(0x216000) = 0x216000
brk(0x237000) = 0x237000
brk(0x258000) = 0x258000
brk(0x279000) = 0x279000
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
time(NULL) = 1215244432
times({tms_utime=29, tms_stime=3, tms_cutime=0, tms_cstime=0}) = 53430
times({tms_utime=29, tms_stime=3, tms_cutime=0, tms_cstime=0}) = 53430
getcwd("/", 4096) = 2
stat64("convert", 0xbe9949b8) = -1 ENOENT (No such file or directory)
stat64("YUV:label.yuv", 0xbe9929a0) = -1 ENOENT (No such file or directory)
stat64("YUV:label.yuv", 0xbe9929a0) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/coder.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("coder.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 4560
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 4560) = 4560
close(3) = 0
stat64("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/modules-Q16/coders/yuv.la", 0xbe98e89c) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/config/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/lib/ImageMagick-6.4.1/config/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/doc/ImageMagick-6.4.1/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/subhasishG/S8-042408/camera/root_fs/rootfs/share/ImageMagick-6.4.1/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("//.magick/delegates.xml", O_RDONLY) = -1 ENOENT (No such file or directory)
open("delegates.xml", O_RDONLY) = 3
lseek(3, 0, SEEK_END) = 10611
lseek(3, 0, SEEK_SET) = 0
read(3, "<?xml version=\"1.0\" encoding=\"UT"..., 10611) = 10611
close(3) = 0
stat64("YUV:label.yuv", 0xbe9949b8) = -1 ENOENT (No such file or directory)
write(2, "convert: missing an image filena"..., 50convert: missing an image filename `YUV:label.yuv') = 50
write(2, ".\n", 2.
) = 2
io_submit(0x1, 0x1, 0xfbad2088 <unfinished ... exit status 1>
Any ideas why am i having this problem??