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
0cb4df19
Commit
0cb4df19
authored
Jun 01, 2004
by
Mike Hibler
Browse files
RE fixes for pc300 recognition (was matching pc3000 nodes as well)
parent
ebdb000f
Changes
2
Hide whitespace changes
Inline
Side-by-side
tmcd/freebsd/cpuspeed.awk
View file @
0cb4df19
...
...
@@ -54,7 +54,7 @@ BEGIN {
found
=
1
;
exit
}
/^CPU:.*
\(
29
[
0-9
]
|30
[
0-9
]
|333
\.[
0-9
]
+
\-
MHz/
{
/^CPU:.*
\(
(
29
[
0-9
]
|30
[
0-9
]
|333
)
\.[
0-9
]
+
\-
MHz/
{
print
"300"
;
found
=
1
;
exit
...
...
tmcd/linux/cpuspeed.awk
View file @
0cb4df19
...
...
@@ -37,7 +37,7 @@
print
"600"
;
exit
}
/^cpu MHz.*29
[
0-9
]
|30
[
0-9
]\.[
0-9
]
+$/
{
/^cpu MHz.*
(
29
[
0-9
]
|30
[
0-9
]
)
\.[
0-9
]
+$/
{
print
"300"
;
exit
}
...
...
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