Skip to content
Snippets Groups Projects
  • Stefan Roese's avatar
    7f5d8a4d
    UBI: Fix error code handling in ubi commands · 7f5d8a4d
    Stefan Roese authored
    
    Some ubi commands returned negative error codes, resulting in
    the following error message on the prompt:
    
    "exit not allowed from main input shell."
    
    Negative error codes are not allowed.
    
    This patch now changes the UBI code to return positive error codes.
    Additionally "better" error codes are used, for example "ENOMEM" when
    no memory is available for the UBI volume creation any more.
    
    Also the output of some commands is enhanced:
    
    Before:
    
    => ubi read 100000 testvol 100000
    Volume testvol found at volume id 0
    read 1048576 bytes from volume 0 to 100000(buf address)
    => ubi write 100000 testvol 1000
    Volume testvol found at volume id 0
    
    After:
    
    => ubi read 100000 testvol 100000
    Read 1048576 bytes from volume testvol to 00100000
    => ubi write 100000 testvol 1000
    4096 bytes written to volume testvol
    
    Signed-off-by: default avatarStefan Roese <sr@denx.de>
    Cc: Wolfgang Denk <wd@denx.de>
    7f5d8a4d
    History
    UBI: Fix error code handling in ubi commands
    Stefan Roese authored
    
    Some ubi commands returned negative error codes, resulting in
    the following error message on the prompt:
    
    "exit not allowed from main input shell."
    
    Negative error codes are not allowed.
    
    This patch now changes the UBI code to return positive error codes.
    Additionally "better" error codes are used, for example "ENOMEM" when
    no memory is available for the UBI volume creation any more.
    
    Also the output of some commands is enhanced:
    
    Before:
    
    => ubi read 100000 testvol 100000
    Volume testvol found at volume id 0
    read 1048576 bytes from volume 0 to 100000(buf address)
    => ubi write 100000 testvol 1000
    Volume testvol found at volume id 0
    
    After:
    
    => ubi read 100000 testvol 100000
    Read 1048576 bytes from volume testvol to 00100000
    => ubi write 100000 testvol 1000
    4096 bytes written to volume testvol
    
    Signed-off-by: default avatarStefan Roese <sr@denx.de>
    Cc: Wolfgang Denk <wd@denx.de>