Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932104AbVJQHkp (ORCPT ); Mon, 17 Oct 2005 03:40:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932130AbVJQHkp (ORCPT ); Mon, 17 Oct 2005 03:40:45 -0400 Received: from ms-smtp-02.nyroc.rr.com ([24.24.2.56]:59586 "EHLO ms-smtp-02.nyroc.rr.com") by vger.kernel.org with ESMTP id S932104AbVJQHko (ORCPT ); Mon, 17 Oct 2005 03:40:44 -0400 Date: Mon, 17 Oct 2005 03:38:49 -0400 (EDT) From: Steven Rostedt X-X-Sender: rostedt@localhost.localdomain To: linux-kernel@vger.kernel.org cc: Michal Schmidt , Esben Nielsen , Ingo Molnar , Thomas Gleixner , Matt Mackall Subject: ketchup+rt with ktimers added. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1692 Lines: 44 Here's another update patch to ketchup based on Michal Schmidts patched version of Matt Mackall's ketchup at http://www.uamt.feec.vutbr.cz/rizeni/pom/ketchup-0.9+rt This patch adds Thomas Gleixner's ktimers (both base kt and HRT versions). Since the base version of Michal Schmidt's ketchup-0.9+rt didn't include Esben Nielsen's addition of handling Ingo's older kernels, I again included it with this patch. -- Steve --- ketchup-0.9+rt 2005-08-16 08:25:40.000000000 -0400 +++ ketchup 2005-10-17 03:09:53.000000000 -0400 @@ -311,7 +311,15 @@ '2.6-rt': (latest_dir, "http://people.redhat.com/mingo/realtime-preempt/patch-%(full)s", r'patch-(2.6.*?)', - 0, "Ingo Molnar's realtime-preempt kernel") + 0, "Ingo Molnar's realtime-preempt kernel"), + '2.6-kt': (latest_dir, + "http://www.tglx.de/projects/ktimers/patch-%(full)s.patch", + r'patch-(2.6.*?)', + 0, "Thomas Gleixner's ktimers."), + '2.6-kthrt': (latest_dir, + "http://www.tglx.de/projects/ktimers/patch-%(full)s.patch", + r'patch-(2.6.*?)', + 0, "Thomas Gleixner's ktimers and HRT patches.") } def version_url(ver, sign = 0): @@ -363,6 +371,7 @@ # the jgarzik memorial hack url2 = re.sub("/snapshots/", "/snapshots/old/", url) + url2 = re.sub("/realtime-preempt/", "/realtime-preempt/older/", url2) if url2 != url: if download(url2, file): return file if url2[-4:] == ".bz2": - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/