This patch fixes the case where a module line is supposed to be added
to the very end of the file but the file does not end in with a new
line. Also fixes a problem that in some cases the module line would
not be properly be removed.
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
def set_boot_policy(title_idx, filename):
boottitles = get_boot_policies()
+ for key in boottitles.iterkeys():
+ boottitles[key] += ".bin"
if boottitles.has_key(title_idx):
rm_policy_from_boottitle(title_idx, [ boottitles[title_idx] ])
rc = add_boot_policy(title_idx, filename)
os.write(tmp_fd, line)
if module_line != "" and not found:
+ if ord(line[-1]) not in [ 10 ]:
+ os.write(tmp_fd, '\n')
os.write(tmp_fd, module_line)
found = True