guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: wrong type of agument... where ?


From: Danny Milosavljevic
Subject: Re: wrong type of agument... where ?
Date: Mon, 1 Jan 2018 00:39:18 +0100

Try this:

diff --git a/gnu/build/linux-boot.scm b/gnu/build/linux-boot.scm
index 4dd740174..810a0d63f 100644
--- a/gnu/build/linux-boot.scm
+++ b/gnu/build/linux-boot.scm
@@ -507,7 +507,14 @@ to it are lost."
              (switch-root "/root")
              (format #t "loading '~a'...\n" to-load)
 
-             (primitive-load to-load)
+             (catch #t
+               (lambda ()
+                 (primitive-load to-load))
+               (lambda (key . args)
+                 (format (current-error-port) "Error: ~a: ~a\n" key args)
+                 (reboot))
+               (lambda (key . args)
+                 (display-backtrace (make-stack #t) (current-error-port))))
 
              (format (current-error-port)
                      "boot program '~a' terminated, rebooting~%"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]