about summary refs log tree commit diff stats
path: root/fstypes.c
diff options
context:
space:
mode:
authorPeter H. Froehlich <peter.hans.froehlich@gmail.com>2021-04-14 19:30:59 +0200
committerPeter H. Froehlich <peter.hans.froehlich@gmail.com>2021-04-14 19:30:59 +0200
commit5ce6e90c70378c63044b526f6a8196645971576a (patch)
tree6884fa00155a8b702426ca356b6184d15b23ac0c /fstypes.c
parentd8db100f9b1913dd0e204f7561bc89f1f46fcefc (diff)
downloadmkgpt-5ce6e90c70378c63044b526f6a8196645971576a.tar.gz
Add swap partition, SPDX identifiers.
Diffstat (limited to 'fstypes.c')
-rw-r--r--fstypes.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fstypes.c b/fstypes.c
index 383f8c5..2e697cf 100644
--- a/fstypes.c
+++ b/fstypes.c
@@ -1,3 +1,5 @@
+/* SPDX-License-Identifier: MIT */
+
 /* Copyright (C) 2014 by John Cronin
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -62,4 +64,6 @@ init_fstypes()
 	fsnames[0x29] = "fat32+";
 	string_to_guid(&fstypes[0x83], "0FC63DAF-8483-4772-8E79-3D69D8477DE4");
 	fsnames[0x83] = "linux";
+	string_to_guid(&fstypes[0x82], "0657FD6D-A4AB-43C4-84E5-0933C84B4F4F");
+	fsnames[0x82] = "swap";
 }