]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kvm tools: Remove bogus init printout
authorPekka Enberg <penberg@kernel.org>
Sun, 15 Jan 2012 13:02:40 +0000 (15:02 +0200)
committerPekka Enberg <penberg@kernel.org>
Sun, 15 Jan 2012 13:03:05 +0000 (15:03 +0200)
This patch removes the following printout from init:

  Starting '/bin/sh'...

which is completely bogus for "vm sandbox", for example.

Signed-off-by: Pekka Enberg <penberg@kernel.org>
tools/kvm/guest/init_stage2.c

index 96bcfcd03d504faac1dc715edcc058ba6ce2b0a8..5f9389448344cf0df74943e7c5b53d6badcf5f8f 100644 (file)
@@ -36,8 +36,6 @@ int main(int argc, char *argv[])
        /* set controlling terminal */
        ioctl(0, TIOCSCTTY, 1);
 
-       puts("Starting '/bin/sh'...");
-
        child = fork();
        if (child < 0) {
                printf("Fatal: fork() failed with %d\n", child);