diff options
| author | Cyril Bur <cyril.bur@au1.ibm.com> | 2018-03-15 16:58:14 +1100 |
|---|---|---|
| committer | Stewart Smith <stewart@linux.ibm.com> | 2018-04-09 03:45:23 -0500 |
| commit | 60b8ea49c8a6249820e586f92cf65b42c5514813 (patch) | |
| tree | e30d0b3fa763e23872886aec7524a3e9771a2201 /external/pflash | |
| parent | 267e65357c2e6d98cedebe55ec4cbca95af68f13 (diff) | |
| download | talos-skiboot-60b8ea49c8a6249820e586f92cf65b42c5514813.tar.gz talos-skiboot-60b8ea49c8a6249820e586f92cf65b42c5514813.zip | |
libffs: Standardise ffs partition flags
It seems we've developed a character respresentation for ffs partition
flags. Currently only pflash really prints them so it hasn't been a
problem but now ffspart wants to read them in from user input.
It is important that what libffs reads and what pflash prints remain
consistent, we should move the code into libffs to avoid problems.
Signed-off-by: Cyril Bur <cyril.bur@au1.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'external/pflash')
| -rw-r--r-- | external/pflash/test/files/06-miscprint.ffs | 2 | ||||
| -rw-r--r-- | external/pflash/test/results/01-info.out | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/external/pflash/test/files/06-miscprint.ffs b/external/pflash/test/files/06-miscprint.ffs index 885a6f22..58e84d59 100644 --- a/external/pflash/test/files/06-miscprint.ffs +++ b/external/pflash/test/files/06-miscprint.ffs @@ -2,5 +2,5 @@ PRESERVED,0x003000,0x1000,P,/dev/zero READONLY,0x0004000,0x1000,R,/dev/zero REPROVISION,0x5000,0x1000,F,/dev/zero BACKUP,0x000006000,0x1000,B,/dev/zero -VOLATILE,0x000007000,0x1000,L,/dev/zero +VOLATILE,0x000007000,0x1000,V,/dev/zero CLEARECC,0x000008000,0x1000,C,/dev/zero diff --git a/external/pflash/test/results/01-info.out b/external/pflash/test/results/01-info.out index 204d5947..7377c71a 100644 --- a/external/pflash/test/results/01-info.out +++ b/external/pflash/test/results/01-info.out @@ -7,9 +7,9 @@ Erase granule = 0KB F:REPROVISION, V:VOLATILE, C:CLEARECC TOC@0x00000000 Partitions: ----------- ID=00 part 0x00000000..0x00001000 (actual=0x00001000) [-------] -ID=01 ONE 0x00003000..0x00004000 (actual=0x00001000) [E------] +ID=01 ONE 0x00003000..0x00004000 (actual=0x00001000) [E----V-] ID=02 TWO 0x00004000..0x00005000 (actual=0x00001000) [E---F--] ID=03 THREE 0x00005000..0x00006000 (actual=0x00001000) [E---F--] ID=04 FOUR 0x00006000..0x00007000 (actual=0x00001000) [E---F--] -ID=05 FIVE 0x00007000..0x00008000 (actual=0x00001000) [-----V-] +ID=05 FIVE 0x00007000..0x00008000 (actual=0x00001000) [-------] ID=06 SIX 0x00008000..0x00009000 (actual=0x00001000) [------C] |

