[PATCH 02/12] dos partitions: Do not register as fixed partitions

Sascha Hauer s.hauer at pengutronix.de
Wed Feb 15 03:22:35 EST 2012


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 <s.hauer at pengutronix.de>
---
 common/partitions.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/common/partitions.c b/common/partitions.c
index e4f3ad6..74b4f12 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);
 }
 
 /**
-- 
1.7.9




More information about the barebox mailing list