From 3561759620d72df3ed305f826d336ce514e55e5c Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Tue, 14 Oct 2003 04:29:39 +0000 Subject: - Fix the link check so it actually checks for the appropriate maximum link git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1218 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/newconfig/config.g | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/newconfig') diff --git a/util/newconfig/config.g b/util/newconfig/config.g index 5bec889092..8b356c8af5 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -628,7 +628,7 @@ class partobj: self.path = "" # Link from parent device - if ((link < 0) or (link > 2)): + if ((link < 0) or (link > 16)): fatal("Invalid link") self.link = link -- cgit v1.2.3