From 80b767748b0dca9939315d95326dd76f93ffff88 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 13 Feb 2012 19:42:17 +0100 Subject: [PATCH] dos partitions: Do not register as fixed partitions A fixed partition means that we can't remove it. This is only suitable for our vital /dev/self0 and /dev/env0 partitions, so remove the fixed flag. Signed-off-by: Sascha Hauer --- common/partitions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/partitions.c b/common/partitions.c index e4f3ad69e..74b4f1201 100644 --- a/common/partitions.c +++ b/common/partitions.c @@ -163,7 +163,7 @@ static int register_one_partition(struct block_device *blk, return devfs_add_partition(blk->cdev.name, part->first_sec * SECTOR_SIZE, part->size * SECTOR_SIZE, - DEVFS_PARTITION_FIXED, partition_name); + 0, partition_name); } /**