From 4a736c8b8b2079cf1ba966eb118595e152029872 Mon Sep 17 00:00:00 2001 From: Eric Ernst Date: Wed, 4 Jun 2025 16:10:12 -0700 Subject: [PATCH] Add module description for ContainerizationEXT4 (#14) Signed-off-by: Eric Ernst --- Package.swift | 4 ++++ Sources/ContainerizationEXT4/Documentation.docc/ext4.md | 4 ++++ Sources/ContainerizationEXT4/README.md | 4 ++++ 3 files changed, 12 insertions(+) create mode 100644 Sources/ContainerizationEXT4/Documentation.docc/ext4.md create mode 100644 Sources/ContainerizationEXT4/README.md diff --git a/Package.swift b/Package.swift index 1dad186b..b10865f7 100644 --- a/Package.swift +++ b/Package.swift @@ -110,6 +110,10 @@ let package = Package( .target(name: "ContainerizationArchive", condition: .when(platforms: [.macOS])), .product(name: "SystemPackage", package: "swift-system"), "ContainerizationOS", + ], + path: "Sources/ContainerizationEXT4", + exclude: [ + "README.md" ] ), .testTarget( diff --git a/Sources/ContainerizationEXT4/Documentation.docc/ext4.md b/Sources/ContainerizationEXT4/Documentation.docc/ext4.md new file mode 100644 index 00000000..8962833b --- /dev/null +++ b/Sources/ContainerizationEXT4/Documentation.docc/ext4.md @@ -0,0 +1,4 @@ +# ``ContainerizationEXT4`` + +`ContainerizationEXT4` provides functionality to read the superblock of an existing ext4 block device and format a new block device with +the ext4 file system. diff --git a/Sources/ContainerizationEXT4/README.md b/Sources/ContainerizationEXT4/README.md new file mode 100644 index 00000000..8962833b --- /dev/null +++ b/Sources/ContainerizationEXT4/README.md @@ -0,0 +1,4 @@ +# ``ContainerizationEXT4`` + +`ContainerizationEXT4` provides functionality to read the superblock of an existing ext4 block device and format a new block device with +the ext4 file system.