* [Buildroot] No proc mounted
@ 2013-10-22 19:30 Naitik Amin
2013-10-22 21:15 ` Peter Korsgaard
0 siblings, 1 reply; 10+ messages in thread
From: Naitik Amin @ 2013-10-22 19:30 UTC (permalink / raw)
To: buildroot
Hi there,
I have been generating the rootfs using buildroot. Then dd'ing the
rootfs.ext3 to the rootfs partition on my sdcard. After inserting the
sdcard into my target, it comes up with no /proc, /sys etc...
In fstab, I do see the line which should mount /proc, but doesnt seem to
happen..
Any ideas..
$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount pt> <type> <options> <dump> <pass>
/dev/root / ext2 rw,noauto 0 1
proc /proc proc defaults 0 0
devpts /dev/pts devpts defaults,gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs mode=0777 0 0
tmpfs /tmp tmpfs defaults 0 0
sysfs /sys sysfs defaults 0 0
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20131022/a2d1ddf3/attachment.html>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-22 19:30 [Buildroot] No proc mounted Naitik Amin
@ 2013-10-22 21:15 ` Peter Korsgaard
2013-10-23 12:56 ` Naitik Amin
0 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2013-10-22 21:15 UTC (permalink / raw)
To: buildroot
>>>>> "Naitik" == Naitik Amin <Naitik.Amin@ametek.com> writes:
> Hi there,
> I have been generating the rootfs using buildroot. Then dd'ing the rootfs.ext3
> to the rootfs partition on my sdcard. After inserting the sdcard into my
> target, it comes up with no /proc, /sys etc...
> In fstab, I do see the line which should mount /proc, but doesnt seem to
> happen..
> Any ideas..
> $ cat /etc/fstab
> # /etc/fstab: static file system information.
> #
> # <file system> <mount pt> <type> <options> <dump> <pass>
> /dev/root / ext2 rw,noauto 0 1
> proc /proc proc defaults 0 0
> devpts /dev/pts devpts defaults,gid=5,mode=620 0 0
> tmpfs /dev/shm tmpfs mode=0777 0 0
> tmpfs /tmp tmpfs defaults 0 0
> sysfs /sys sysfs defaults 0 0
Odd. Could you provide some more details, please? E.G. type 'make
savedefconfig' and paste the content of the 'defconfig' file here.
The default busybox init program runs mount -a, so all these should get
mounted. What happens if you manually run mount -a?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-22 21:15 ` Peter Korsgaard
@ 2013-10-23 12:56 ` Naitik Amin
2013-10-23 17:17 ` Arnout Vandecappelle
0 siblings, 1 reply; 10+ messages in thread
From: Naitik Amin @ 2013-10-23 12:56 UTC (permalink / raw)
To: buildroot
Hi Peter,
Here it is,
BR2_arm=y
BR2_cortex_a9=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED=y
BR2_TOOLCHAIN_EXTERNAL_PATH="/opt/gcc-linaro-arm-linux-gnueabihf-4.7-2012.11-20121123_linux"
BR2_TARGET_GENERIC_HOSTNAME="tr3000"
BR2_TARGET_GENERIC_ROOT_PASSWD="root"
BR2_TARGET_GENERIC_GETTY_BAUDRATE_57600=y
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_USERAPPS=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_3=y
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="socfpga_cyclone5"
BR2_TARGET_UBOOT_CUSTOM_GIT=y
BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="
http://git.rocketboards.org/u-boot-socfpga.git"
BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_13.02_RC10"
BR2_TARGET_UBOOT_FORMAT_IMG=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="spl/u-boot-spl.bin"
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_GIT=y
BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="
http://git.rocketboards.org/linux-socfpga.git"
BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="rel_13.07_RC0"
BR2_LINUX_KERNEL_DEFCONFIG="socfpga"
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="socfpga_cyclone5"
From: Peter Korsgaard <jacmet@uclibc.org>
To: "Naitik Amin" <Naitik.Amin@ametek.com>,
Cc: buildroot at busybox.net, buildroot at uclibc.org
Date: 10/22/2013 05:15 PM
Subject: Re: No proc mounted
Sent by: Peter Korsgaard <jacmet@gmail.com>
>>>>> "Naitik" == Naitik Amin <Naitik.Amin@ametek.com> writes:
> Hi there,
> I have been generating the rootfs using buildroot. Then dd'ing the
rootfs.ext3
> to the rootfs partition on my sdcard. After inserting the sdcard into
my
> target, it comes up with no /proc, /sys etc...
> In fstab, I do see the line which should mount /proc, but doesnt seem
to
> happen..
> Any ideas..
> $ cat /etc/fstab
> # /etc/fstab: static file system information.
> #
> # <file system> <mount pt> <type> <options> <dump> <pass>
> /dev/root / ext2 rw,noauto 0 1
> proc /proc proc defaults 0 0
> devpts /dev/pts devpts defaults,gid=5,mode=620 0 0
> tmpfs /dev/shm tmpfs mode=0777 0 0
> tmpfs /tmp tmpfs defaults 0 0
> sysfs /sys sysfs defaults 0 0
Odd. Could you provide some more details, please? E.G. type 'make
savedefconfig' and paste the content of the 'defconfig' file here.
The default busybox init program runs mount -a, so all these should get
mounted. What happens if you manually run mount -a?
--
Bye, Peter Korsgaard
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20131023/43b77a5c/attachment-0001.html>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 12:56 ` Naitik Amin
@ 2013-10-23 17:17 ` Arnout Vandecappelle
2013-10-23 17:21 ` Naitik Amin
0 siblings, 1 reply; 10+ messages in thread
From: Arnout Vandecappelle @ 2013-10-23 17:17 UTC (permalink / raw)
To: buildroot
On 23/10/13 14:56, Naitik Amin wrote:
> Hi Peter,
>
> Here it is,
>
> BR2_arm=y
> BR2_cortex_a9=y
> BR2_TOOLCHAIN_EXTERNAL=y
> BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED=y
> BR2_TOOLCHAIN_EXTERNAL_PATH="/opt/gcc-linaro-arm-linux-gnueabihf-4.7-2012.11-20121123_linux"
> BR2_TARGET_GENERIC_HOSTNAME="tr3000"
> BR2_TARGET_GENERIC_ROOT_PASSWD="root"
> BR2_TARGET_GENERIC_GETTY_BAUDRATE_57600=y
> BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
> BR2_PACKAGE_USERAPPS=y
> BR2_TARGET_ROOTFS_CPIO=y
> BR2_TARGET_ROOTFS_EXT2=y
> BR2_TARGET_ROOTFS_EXT2_3=y
> BR2_TARGET_ROOTFS_JFFS2=y
> BR2_TARGET_UBOOT=y
> BR2_TARGET_UBOOT_BOARDNAME="socfpga_cyclone5"
> BR2_TARGET_UBOOT_CUSTOM_GIT=y
> BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="http://git.rocketboards.org/u-boot-socfpga.git"
> BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_13.02 _RC10"
> BR2_TARGET_UBOOT_FORMAT_IMG=y
> BR2_TARGET_UBOOT_SPL=y
> BR2_TARGET_UBOOT_SPL_NAME="spl/u-boot-spl.bin"
> BR2_LINUX_KERNEL=y
> BR2_LINUX_KERNEL_CUSTOM_GIT=y
> BR2_LINUX_KERNEL_CUSTOM_GIT
> _REPO_URL="http://git.rocketboards.org/linux-socfpga.git"
> BR2_LINUX_KERNEL_CUSTOM_GIT _VERSION="rel_13.07_RC0"
> BR2_LINUX_KERNEL_DEFCONFIG="socfpga"
> BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
> BR2_LINUX_KERNEL_DTS_SUPPORT=y
> BR2_LINUX_KERNEL_INTREE_DTS_NAME="socfpga_cyclone5"
Nothing suspicious here... Is there any mount error reported on the
console? Can you log in to the system? If so, can you try to mount /proc
manually?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 17:17 ` Arnout Vandecappelle
@ 2013-10-23 17:21 ` Naitik Amin
2013-10-23 17:23 ` Arnout Vandecappelle
0 siblings, 1 reply; 10+ messages in thread
From: Naitik Amin @ 2013-10-23 17:21 UTC (permalink / raw)
To: buildroot
Manually works.
$ mount -t proc proc /proc
mount: mounting proc on /proc failed: No such file or directory
$ mkdir /proc
$ mount -t proc proc /proc
$ cd /proc/
$ ls
1 341 8 interrupts partitions
10 4 9 iomem self
11 403 buddyinfo ioports slabinfo
12 454 bus irq softirqs
13 488 cgroups kallsyms stat
14 494 cmdline key-users swaps
15 5 config.gz kmsg sys
16 514 consoles kpagecount sysrq-trigger
17 523 cpu kpageflags sysvipc
18 538 cpuinfo loadavg timer_list
198 547 crypto locks tty
2 548 device-tree meminfo uptime
200 556 devices misc version
218 565 diskstats modules vmallocinfo
3 569 driver mounts vmstat
327 572 execdomains mtd zoneinfo
328 6 filesystems net
335 7 fs pagetypeinfo
From: Arnout Vandecappelle <arnout@mind.be>
To: Naitik Amin <Naitik.Amin@ametek.com>,
Cc: Peter Korsgaard <jacmet@uclibc.org>, buildroot at busybox.net, Naitik
Amin <naitik.amin@gmail.com>, Peter Korsgaard <jacmet@gmail.com>,
buildroot at uclibc.org
Date: 10/23/2013 01:17 PM
Subject: Re: [Buildroot] No proc mounted
On 23/10/13 14:56, Naitik Amin wrote:
> Hi Peter,
>
> Here it is,
>
> BR2_arm=y
> BR2_cortex_a9=y
> BR2_TOOLCHAIN_EXTERNAL=y
> BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED=y
>
BR2_TOOLCHAIN_EXTERNAL_PATH="/opt/gcc-linaro-arm-linux-gnueabihf-4.7-2012.11-20121123_linux"
> BR2_TARGET_GENERIC_HOSTNAME="tr3000"
> BR2_TARGET_GENERIC_ROOT_PASSWD="root"
> BR2_TARGET_GENERIC_GETTY_BAUDRATE_57600=y
> BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
> BR2_PACKAGE_USERAPPS=y
> BR2_TARGET_ROOTFS_CPIO=y
> BR2_TARGET_ROOTFS_EXT2=y
> BR2_TARGET_ROOTFS_EXT2_3=y
> BR2_TARGET_ROOTFS_JFFS2=y
> BR2_TARGET_UBOOT=y
> BR2_TARGET_UBOOT_BOARDNAME="socfpga_cyclone5"
> BR2_TARGET_UBOOT_CUSTOM_GIT=y
> BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="
http://git.rocketboards.org/u-boot-socfpga.git"
> BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_13.02 _RC10"
> BR2_TARGET_UBOOT_FORMAT_IMG=y
> BR2_TARGET_UBOOT_SPL=y
> BR2_TARGET_UBOOT_SPL_NAME="spl/u-boot-spl.bin"
> BR2_LINUX_KERNEL=y
> BR2_LINUX_KERNEL_CUSTOM_GIT=y
> BR2_LINUX_KERNEL_CUSTOM_GIT
> _REPO_URL="http://git.rocketboards.org/linux-socfpga.git"
> BR2_LINUX_KERNEL_CUSTOM_GIT _VERSION="rel_13.07_RC0"
> BR2_LINUX_KERNEL_DEFCONFIG="socfpga"
> BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
> BR2_LINUX_KERNEL_DTS_SUPPORT=y
> BR2_LINUX_KERNEL_INTREE_DTS_NAME="socfpga_cyclone5"
Nothing suspicious here... Is there any mount error reported on the
console? Can you log in to the system? If so, can you try to mount /proc
manually?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20131023/c3ff0a63/attachment-0001.html>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 17:21 ` Naitik Amin
@ 2013-10-23 17:23 ` Arnout Vandecappelle
2013-10-23 17:27 ` Naitik Amin
0 siblings, 1 reply; 10+ messages in thread
From: Arnout Vandecappelle @ 2013-10-23 17:23 UTC (permalink / raw)
To: buildroot
On 23/10/13 19:21, Naitik Amin wrote:
> $ mount -t proc proc /proc
> mount: mounting proc on /proc failed: No such file or directory
Aha!
The /proc directory is part of the skeleton that is copied in from
system/skeleton. Does the directory system/skeleton/proc exist in your
copy of buildroot? We keep a file .empty in there to make sure the
directory is seen by the VCS (git), but perhaps you have a VCS that
doesn't do that?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 17:23 ` Arnout Vandecappelle
@ 2013-10-23 17:27 ` Naitik Amin
2013-10-23 17:39 ` Arnout Vandecappelle
0 siblings, 1 reply; 10+ messages in thread
From: Naitik Amin @ 2013-10-23 17:27 UTC (permalink / raw)
To: buildroot
There isn't !
/system/skeleton$ ls
bin dev etc home media mnt opt run sbin sys usr var
Should just create one by hand, or is there an option in menuconfig that
needs to be set ?
From: Arnout Vandecappelle <arnout@mind.be>
To: Naitik Amin <Naitik.Amin@ametek.com>,
Cc: buildroot at uclibc.org, buildroot at busybox.net, Peter Korsgaard
<jacmet@gmail.com>, Peter Korsgaard <jacmet@uclibc.org>, Naitik Amin
<naitik.amin@gmail.com>
Date: 10/23/2013 01:23 PM
Subject: Re: [Buildroot] No proc mounted
On 23/10/13 19:21, Naitik Amin wrote:
> $ mount -t proc proc /proc
> mount: mounting proc on /proc failed: No such file or directory
Aha!
The /proc directory is part of the skeleton that is copied in from
system/skeleton. Does the directory system/skeleton/proc exist in your
copy of buildroot? We keep a file .empty in there to make sure the
directory is seen by the VCS (git), but perhaps you have a VCS that
doesn't do that?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20131023/72762bda/attachment-0001.html>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 17:27 ` Naitik Amin
@ 2013-10-23 17:39 ` Arnout Vandecappelle
2013-10-23 21:26 ` Naitik Amin
0 siblings, 1 reply; 10+ messages in thread
From: Arnout Vandecappelle @ 2013-10-23 17:39 UTC (permalink / raw)
To: buildroot
On 23/10/13 19:27, Naitik Amin wrote:
> There isn't !
>
> /system/skeleton$ ls
> bin dev etc home media mnt opt run sbin sys usr var
That's weird... You're also missing lib, root and tmp...
Where did you get this buildroot tree?
You didn't put this on a FAT or NTFS partition, did you? That won't
work (but I would expect buildroot to barf on it much earlier already).
> Should just create one by hand, or is there an option in menuconfig that
> needs to be set ?
You can create lib, proc, root and tmp by hand, but then you have to do
a 'make clean' to make sure they're actually in the target. So you should
probably also create them in the target as a quick verification if that
solves the issue for you.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 17:39 ` Arnout Vandecappelle
@ 2013-10-23 21:26 ` Naitik Amin
2013-10-23 21:36 ` Arnout Vandecappelle
0 siblings, 1 reply; 10+ messages in thread
From: Naitik Amin @ 2013-10-23 21:26 UTC (permalink / raw)
To: buildroot
Got it everything is good now.
ls
bin etc linuxrc mnt root sys var
dev home lost+found opt run tmp
dummy lib media proc sbin usr
The source control system that I use, wud not keep any empty folders !!
Thanks for you insight.
One more question, do u know if I can add openssl, I am looking to do scp
and ssh into my target from my workstation.
From: Arnout Vandecappelle <arnout@mind.be>
To: Naitik Amin <Naitik.Amin@ametek.com>,
Cc: buildroot at busybox.net, Naitik Amin <naitik.amin@gmail.com>
Date: 10/23/2013 01:39 PM
Subject: Re: [Buildroot] No proc mounted
On 23/10/13 19:27, Naitik Amin wrote:
> There isn't !
>
> /system/skeleton$ ls
> bin dev etc home media mnt opt run sbin sys usr var
That's weird... You're also missing lib, root and tmp...
Where did you get this buildroot tree?
You didn't put this on a FAT or NTFS partition, did you? That won't
work (but I would expect buildroot to barf on it much earlier already).
> Should just create one by hand, or is there an option in menuconfig that
> needs to be set ?
You can create lib, proc, root and tmp by hand, but then you have to do
a 'make clean' to make sure they're actually in the target. So you should
probably also create them in the target as a quick verification if that
solves the issue for you.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20131023/be4f5915/attachment.html>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] No proc mounted
2013-10-23 21:26 ` Naitik Amin
@ 2013-10-23 21:36 ` Arnout Vandecappelle
0 siblings, 0 replies; 10+ messages in thread
From: Arnout Vandecappelle @ 2013-10-23 21:36 UTC (permalink / raw)
To: buildroot
On 23/10/13 23:26, Naitik Amin wrote:
> Got it everything is good now.
> ls
> bin etc linuxrc mnt root sys var
> dev home lost+found opt run tmp
> dummy lib media proc sbin usr
>
> The source control system that I use, wud not keep any empty folders !!
But the weird thing is that it also doesn't store files beginning with
. (like the .empty files which are there). In root, there's a .profile
for instance.
>
> Thanks for you insight.
>
> One more question, do u know if I can add openssl, I am looking to do scp
> and ssh into my target from my workstation.
For that you don't need openssl, but dropbear or openssh under
Networking applications.
Regards,
Arnout
PS the policy on the mailing list is not to do top-posting. I realize
that that is hard in Lotus Notes, though.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-10-23 21:36 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-22 19:30 [Buildroot] No proc mounted Naitik Amin
2013-10-22 21:15 ` Peter Korsgaard
2013-10-23 12:56 ` Naitik Amin
2013-10-23 17:17 ` Arnout Vandecappelle
2013-10-23 17:21 ` Naitik Amin
2013-10-23 17:23 ` Arnout Vandecappelle
2013-10-23 17:27 ` Naitik Amin
2013-10-23 17:39 ` Arnout Vandecappelle
2013-10-23 21:26 ` Naitik Amin
2013-10-23 21:36 ` Arnout Vandecappelle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox