diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-10-14 04:29:39 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-10-14 04:29:39 +0000 |
commit | 3561759620d72df3ed305f826d336ce514e55e5c (patch) | |
tree | 9d15ca5c38287b7eb83ff5a5598b6c14bffba483 /util | |
parent | 5a71d1dca7484d084ddc016807cc8a740ad08372 (diff) | |
download | coreboot-3561759620d72df3ed305f826d336ce514e55e5c.tar.xz |
- 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
Diffstat (limited to 'util')
-rw-r--r-- | util/newconfig/config.g | 2 |
1 files changed, 1 insertions, 1 deletions
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 |