From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753663AbYKYPrV (ORCPT ); Tue, 25 Nov 2008 10:47:21 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751868AbYKYPrL (ORCPT ); Tue, 25 Nov 2008 10:47:11 -0500 Received: from pfepa.post.tele.dk ([195.41.46.235]:37808 "EHLO pfepa.post.tele.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751410AbYKYPrK (ORCPT ); Tue, 25 Nov 2008 10:47:10 -0500 Date: Tue, 25 Nov 2008 16:40:11 +0100 From: Sam Ravnborg To: Andrew Morton Cc: Steven Rostedt , Mathieu Desnoyers , Christoph Hellwig , ltt-dev@lists.casi.polymtl.ca, Zhaolei , Lai Jiangshan , Ingo Molnar , linux-kernel@vger.kernel.org, Thomas Gleixner , Linus Torvalds Subject: Re: LTTng kernel integration roadmap, update Message-ID: <20081125154011.GA4883@uranus.ravnborg.org> References: <20081124112842.GA15615@Krystal> <20081124114124.GA32459@infradead.org> <20081124122055.GA18626@Krystal> <20081125055744.c3377164.akpm@linux-foundation.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081125055744.c3377164.akpm@linux-foundation.org> User-Agent: Mutt/1.4.2.1i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > Mathieu, if you're feeling keen I'd suggest that you just type `mkdir > -p userspace/lttng' and build your userspace tools in there. Maybe this can help... Sam diff --git a/usr/Makefile b/usr/Makefile index 201f27f..627fafc 100644 --- a/usr/Makefile +++ b/usr/Makefile @@ -2,6 +2,8 @@ # kbuild file for usr/ - including initramfs image # +subdir-y := lttng + klibcdirs:; PHONY += klibcdirs diff --git a/usr/lttng/Makefile b/usr/lttng/Makefile new file mode 100644 index 0000000..8667998 --- /dev/null +++ b/usr/lttng/Makefile @@ -0,0 +1,4 @@ + +always := ltt + +hostprogs-y := ltt diff --git a/usr/lttng/ltt.c b/usr/lttng/ltt.c new file mode 100644 index 0000000..9eca2ed --- /dev/null +++ b/usr/lttng/ltt.c @@ -0,0 +1,7 @@ +#include + +int main(int ac, char *argv[]) +{ + printf("lttng\n"); + return 0; +}