From d769da93a56590c23ce9430a1d970e31e835ae88 Mon Sep 17 00:00:00 2001 From: Grant Erickson Date: Sat, 14 Jun 2008 01:46:37 +1000 Subject: mkfs.jffs2: Add Support for Symlinks to Device Table Added support for symbolic links to the grammar of the device table file such that links that already exist in the root working directory may have their permissions and ownership changed. Creating symbolic links anew is still unsupported. Added a note to this effect in the manual reference page. Print out the type character when encountering an unsupported file type (e.g. symbolic links when created anew). Signed-off-by: Grant Erickson Signed-off-by: Josh Boyer --- mkfs.jffs2.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'mkfs.jffs2.c') diff --git a/mkfs.jffs2.c b/mkfs.jffs2.c index f042ae7..7255536 100644 --- a/mkfs.jffs2.c +++ b/mkfs.jffs2.c @@ -544,8 +544,11 @@ static int interpret_table_entry(struct filesystem_entry *root, char *line) case 'b': mode |= S_IFBLK; break; + case 'l': + mode |= S_IFLNK; + break; default: - error_msg_and_die("Unsupported file type"); + error_msg_and_die("Unsupported file type '%c'", type); } entry = find_filesystem_entry(root, name, mode); if (entry) { @@ -604,7 +607,7 @@ static int interpret_table_entry(struct filesystem_entry *root, char *line) } break; default: - error_msg_and_die("Unsupported file type"); + error_msg_and_die("Unsupported file type '%c'", type); } } free(name); -- cgit v1.2.3