Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
When using the ls userspace program to list a specific device file,
nothing would be displayed. This was because ls only tests for T_FILE
and T_DIR. T_DEVICE files would fall through the case block.
Adding T_DEVICE to the T_FILE case allows a device file to be listed.
$ ls console
console 3 19 0
|
|
One test case for returning a exit status
Passes usertests, but haven't used it to simplify tests
|
|
|
|
Supporting print long using %l (a bit of cheat)
Modify ls to print size using %l
We should probably update size in inode too.
|
|
|