Skip to content
GitLab
Menu
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
05c5d371
Commit
05c5d371
authored
Aug 14, 2003
by
Robert Ricci
Browse files
Add support for Wisconsin 2.5Ghz, 'i2' nodes
parent
1d8286f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
tmcd/linux/control_interface
View file @
05c5d371
...
@@ -11,6 +11,9 @@ case $NODETYPE in
...
@@ -11,6 +11,9 @@ case $NODETYPE in
pc300|pc1500|pc2000
)
pc300|pc1500|pc2000
)
echo
'eth0'
echo
'eth0'
;;
;;
i2
)
echo
'eth1'
;;
pc850
)
pc850
)
echo
'eth2'
echo
'eth2'
;;
;;
...
...
tmcd/linux/cpuspeed.awk
View file @
05c5d371
...
@@ -5,6 +5,10 @@
...
@@ -5,6 +5,10 @@
# All rights reserved.
# All rights reserved.
#
#
/^
cpu
MHz
.
*
(
24
|
25
)[
0
-
9
][
0
-
9
]
\
.[
0
-
9
]
+
$
/
{
print
"2500"
;
next
}
/^cpu MHz.*
(
19|20
)[
0-9
][
0-9
]\.[
0-9
]
+$/
{
/^cpu MHz.*
(
19|20
)[
0-9
][
0-9
]\.[
0-9
]
+$/
{
print
"2000"
;
print
"2000"
;
next
next
...
...
tmcd/linux/nodetype
View file @
05c5d371
...
@@ -23,6 +23,10 @@ elif [ $cpuspeed = "850" -a -x $BINDIR/chipset.awk ]; then
...
@@ -23,6 +23,10 @@ elif [ $cpuspeed = "850" -a -x $BINDIR/chipset.awk ]; then
echo
pc
$cpuspeed
;
echo
pc
$cpuspeed
;
fi
fi
# For Wiconsin nodes - they have a different node typing scheme
elif
[
$cpuspeed
=
"2500"
]
;
then
echo
i2
;
else
else
echo
pc
$cpuspeed
;
echo
pc
$cpuspeed
;
fi
fi
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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