Changeset 603c1d1f in mainline for uspace/lib/label/src/label.c


Ignore:
Timestamp:
2015-07-05T18:53:00Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bf7ddde
Parents:
99c23405
Message:

Persistent partition table creation and destruction.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/label/src/label.c

    r99c23405 r603c1d1f  
    4141
    4242#include "gpt.h"
     43#include "mbr.h"
    4344
    4445static label_ops_t *probe_list[] = {
    4546        &gpt_label_ops,
     47        &mbr_label_ops,
    4648        NULL
    4749};
     
    7274                break;
    7375        case lt_mbr:
    74                 ops = NULL;
     76                ops = &mbr_label_ops;
    7577                break;
    7678        }
Note: See TracChangeset for help on using the changeset viewer.