add open_read_close() and similar stuff

This commit is contained in:
Denis Vlasenko
2006-10-14 02:23:43 +00:00
parent 88ca067690
commit ea62077b85
38 changed files with 228 additions and 234 deletions

View File

@@ -4186,10 +4186,10 @@ int insmod_main( int argc, char **argv)
m_addr = create_module(m_name, m_size);
if (m_addr == -1) switch (errno) {
case EEXIST:
bb_error_msg("A module named %s already exists", m_name);
bb_error_msg("a module named %s already exists", m_name);
goto out;
case ENOMEM:
bb_error_msg("Can't allocate kernel memory for module; needed %lu bytes",
bb_error_msg("can't allocate kernel memory for module; needed %lu bytes",
m_size);
goto out;
default: