Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
dc5011a8
Commit
dc5011a8
authored
Sep 24, 2002
by
Mike Hibler
Browse files
hacks to support "pc2000", the 2GHz Dells
parent
0c2ba789
Changes
2
Hide whitespace changes
Inline
Side-by-side
tmcd/freebsd/control_interface
View file @
dc5011a8
...
...
@@ -15,4 +15,8 @@ elif [ "$NODETYPE" = 'pcL440GX' ]; then
echo
'fxp1'
elif
[
"
$NODETYPE
"
=
'pc1500'
]
;
then
echo
'xl0'
elif
[
"
$NODETYPE
"
=
'pc2000'
]
;
then
echo
'xl0'
else
echo
'unknown'
fi
tmcd/freebsd/cpuspeed.awk
View file @
dc5011a8
...
...
@@ -5,6 +5,10 @@
# All rights reserved.
#
/^
CPU
:.
*
\
((
19
|
20
)[
0
-
9
][
0
-
9
]
\
.[
0
-
9
]
+
\
-
MHz
/
{
print
"2000"
;
next
}
/^CPU:.*
\(
1
[
45
][
0-9
][
0-9
]\.[
0-9
]
+
\-
MHz/
{
print
"1500"
;
next
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment