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
b0e7c7d3
Commit
b0e7c7d3
authored
Feb 11, 2016
by
Mike Hibler
Browse files
Update to os_boot_cmd to allow FBSD 10.2 as delay node kernel.
parent
dc205eb5
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-fill-supplemental.sql
View file @
b0e7c7d3
...
...
@@ -22,6 +22,7 @@ INSERT IGNORE INTO os_boot_cmd VALUES ('FreeBSD','6.2','linkdelay','/boot/kernel
INSERT
IGNORE
INTO
os_boot_cmd
VALUES
(
'FreeBSD'
,
'7.3'
,
'delay'
,
'/boot/kernel.poll/kernel HZ=10000'
);
INSERT
IGNORE
INTO
os_boot_cmd
VALUES
(
'FreeBSD'
,
'8.2'
,
'delay'
,
'/boot/kernel/kernel kern.hz=10000'
);
INSERT
IGNORE
INTO
os_boot_cmd
VALUES
(
'FreeBSD'
,
'8.3'
,
'delay'
,
'/boot/kernel/kernel kern.hz=10000'
);
INSERT
IGNORE
INTO
os_boot_cmd
VALUES
(
'FreeBSD'
,
'10.2'
,
'delay'
,
'/boot/kernel/kernel kern.hz=10000'
);
INSERT
IGNORE
INTO
os_boot_cmd
VALUES
(
'Linux'
,
'9.0'
,
'linkdelay'
,
'linkdelay'
);
INSERT
IGNORE
INTO
emulab_indicies
(
name
,
idx
)
VALUES
(
'cur_log_seq'
,
1
);
...
...
sql/updates/4/496
0 → 100644
View file @
b0e7c7d3
#
# Updates to os_boot_cmd table.
#
use strict;
use libdb;
sub DoUpdate($$$)
{
my ($dbhandle, $dbname, $version) = @_;
DBQueryFatal("REPLACE INTO os_boot_cmd VALUES" .
" ('FreeBSD','10.2','delay','/boot/kernel/kernel kern.hz=10000')");
return 0;
}
1;
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