From d7e2dc844666cf3f488fd69409640f1f8a9844d4 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 21 Feb 2025 13:15:10 -0500 Subject: kernel: Update kernel log style Kernel logs must now all be lowercase for consistency. A new style called Peripheral Description Notation (PDN) has also been introduced to describe devices. Signed-off-by: Ian Moffett --- sys/fs/initramfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/fs') diff --git a/sys/fs/initramfs.c b/sys/fs/initramfs.c index 7b2f748..acef462 100644 --- a/sys/fs/initramfs.c +++ b/sys/fs/initramfs.c @@ -258,12 +258,12 @@ initramfs_init(struct fs_info *fip) initramfs = get_module("/boot/ramfs.cpio", &initramfs_size); if (initramfs == NULL) { - panic("Failed to open initramfs cpio image\n"); + panic("failed to open initramfs cpio image\n"); } status = vfs_alloc_vnode(&g_root_vnode, VDIR); if (__unlikely(status != 0)) { - panic("Failed to create root vnode for ramfs\n"); + panic("failed to create root vnode for ramfs\n"); } g_root_vnode->vops = &g_initramfs_vops; -- cgit v1.2.3