chiark / gitweb /
remove systemd-timestamp from sources
authorDave Reisner <dreisner@archlinux.org>
Tue, 23 Jul 2013 15:26:58 +0000 (11:26 -0400)
committerDave Reisner <dreisner@archlinux.org>
Tue, 23 Jul 2013 15:41:54 +0000 (11:41 -0400)
No sense in keeping this around if support for reading RD_TIMESTAMP has
been removed.

.gitignore
Makefile.am
src/timestamp/Makefile [deleted symlink]
src/timestamp/timestamp.c [deleted file]

index bdf9d4afd88a9e100fa105aadda35d318fb72ba7..694fc3d8f27a057411a91fe58edb9d507f494a54 100644 (file)
@@ -75,7 +75,6 @@
 /systemd-sysctl
 /systemd-system-update-generator
 /systemd-timedated
 /systemd-sysctl
 /systemd-system-update-generator
 /systemd-timedated
-/systemd-timestamp
 /systemd-tmpfiles
 /systemd-tty-ask-password-agent
 /systemd-uaccess
 /systemd-tmpfiles
 /systemd-tty-ask-password-agent
 /systemd-uaccess
index 7933de677a1c553421e41794872e6b74aca83e88..d013dfd85f196652abf89c70817bd51dbe4bd95f 100644 (file)
@@ -315,7 +315,6 @@ rootlibexec_PROGRAMS = \
        systemd-remount-fs \
        systemd-reply-password \
        systemd-fsck \
        systemd-remount-fs \
        systemd-reply-password \
        systemd-fsck \
-       systemd-timestamp \
        systemd-ac-power \
        systemd-sysctl \
        systemd-sleep
        systemd-ac-power \
        systemd-sysctl \
        systemd-sleep
@@ -1606,13 +1605,6 @@ systemd_fsck_LDADD = \
        libsystemd-dbus.la \
        libudev.la
 
        libsystemd-dbus.la \
        libudev.la
 
-# ------------------------------------------------------------------------------
-systemd_timestamp_SOURCES = \
-       src/timestamp/timestamp.c
-
-systemd_timestamp_LDADD = \
-       libsystemd-shared.la
-
 # ------------------------------------------------------------------------------
 systemd_ac_power_SOURCES = \
        src/ac-power/ac-power.c
 # ------------------------------------------------------------------------------
 systemd_ac_power_SOURCES = \
        src/ac-power/ac-power.c
diff --git a/src/timestamp/Makefile b/src/timestamp/Makefile
deleted file mode 120000 (symlink)
index d0b0e8e..0000000
+++ /dev/null
@@ -1 +0,0 @@
-../Makefile
\ No newline at end of file
diff --git a/src/timestamp/timestamp.c b/src/timestamp/timestamp.c
deleted file mode 100644 (file)
index 1152f1b..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
-/***
-  This file is part of systemd.
-
-  Copyright 2010 Lennart Poettering
-
-  systemd is free software; you can redistribute it and/or modify it
-  under the terms of the GNU Lesser General Public License as published by
-  the Free Software Foundation; either version 2.1 of the License, or
-  (at your option) any later version.
-
-  systemd is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public License
-  along with systemd; If not, see <http://www.gnu.org/licenses/>.
-***/
-
-#include <stdio.h>
-
-#include "util.h"
-
-int main(int argc, char *argv[]) {
-        struct dual_timestamp t;
-
-        /* This is mostly useful for stuff like init ram disk scripts
-         * which want to take a proper timestamp to do minimal bootup
-         * profiling. */
-
-        dual_timestamp_get(&t);
-        printf("%llu %llu\n",
-               (unsigned long long) t.realtime,
-               (unsigned long long) t.monotonic);
-
-        return 0;
-}