From c48d86ff8943cb28538613cd21bc429e0d748df3 Mon Sep 17 00:00:00 2001 From: Matt Harlum Date: Sun, 30 Apr 2023 08:53:29 +0000 Subject: [PATCH] rename to lide.device --- Makefile | 2 +- README.md | 6 +++--- ata.c | 2 +- ata.h | 2 +- atapi.c | 2 +- atapi.h | 2 +- debug.h | 2 +- device.h | 6 +++--- driver.c | 2 +- idetask.c | 2 +- idetask.h | 2 +- scsi.c | 2 +- scsi.h | 2 +- td64.h | 2 +- wait.h | 2 +- 15 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Makefile b/Makefile index 152a083..ec97a7a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -PROJECT=liv2ride.device +PROJECT=lide.device CC=m68k-amigaos-gcc CFLAGS=-nostartfiles -nostdlib -noixemul -mcpu=68000 -Wall -Wno-multichar -Wno-pointer-sign -Wno-attributes -Wno-unused-value -s -Os -fomit-frame-pointer LDFLAGS=-lamiga -lgcc -lc diff --git a/README.md b/README.md index 132bb1e..2a9e84a 100644 --- a/README.md +++ b/README.md @@ -32,12 +32,12 @@ Thanks to [Stefan Reinauer](https://github.com/reinauer) and [Chris Hooper](http Chris' [devtest](https://github.com/cdhooper/amiga_devtest) has also been very helpful for testing the driver. ## Third-party notice -liv2ride.device: mounter.c is adapted from the [A4091](https://github.com/A4091/a4091-software) open-source driver and is Copyright 2021-2022 Toni Wilen -liv2ride.device: The fast read/write routines for ATA devices are adapted from [Frédéric REQUIN](https://github.com/fredrequin)'s [at_apollo_device](https://github.com/fredrequin/at_apollo_device) +lide.device: mounter.c is adapted from the [A4091](https://github.com/A4091/a4091-software) open-source driver and is Copyright 2021-2022 Toni Wilen +lide.device: The fast read/write routines for ATA devices are adapted from [Frédéric REQUIN](https://github.com/fredrequin)'s [at_apollo_device](https://github.com/fredrequin/at_apollo_device) ## License All software contained that is not provided by a third-party is covered by a GPL 2.0 Only license [![License: GPL v2](https://img.shields.io/badge/License-GPL_v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) -liv2ride.device is licensed under the GPL-2.0 only license \ No newline at end of file +lide.device is licensed under the GPL-2.0 only license \ No newline at end of file diff --git a/ata.c b/ata.c index 6546775..e3edef5 100644 --- a/ata.c +++ b/ata.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #include diff --git a/ata.h b/ata.h index 6575058..9c47d43 100644 --- a/ata.h +++ b/ata.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #ifndef _ATA_H diff --git a/atapi.c b/atapi.c index 9a3501c..7d4b577 100644 --- a/atapi.c +++ b/atapi.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #include diff --git a/atapi.h b/atapi.h index 0af250d..1d76768 100644 --- a/atapi.h +++ b/atapi.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #ifndef _ATAPI_H diff --git a/debug.h b/debug.h index ebc7c67..cc9b02a 100644 --- a/debug.h +++ b/debug.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #define DBG_INFO 1 diff --git a/device.h b/device.h index a16ec06..efc28d0 100644 --- a/device.h +++ b/device.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #ifndef _DEVICE_H @@ -75,9 +75,9 @@ struct DeviceBase { if invoked from a macro, macro arguments are expanded). */ #define XSTR(s) STR(s) /* Turn s into a string literal after macro-expanding it. */ -#define DEVICE_NAME "2nd.liv2ride.device" +#define DEVICE_NAME "2nd.lide.device" #define DEVICE_DATE "(" __DATE__ ")" -#define DEVICE_ID_STRING "liv2ride " XSTR(DEVICE_VERSION) "." XSTR(DEVICE_REVISION) " " DEVICE_DATE /* format is: 'name version.revision (d.m.yy)' */ +#define DEVICE_ID_STRING "lide " XSTR(DEVICE_VERSION) "." XSTR(DEVICE_REVISION) " " DEVICE_DATE /* format is: 'name version.revision (d.m.yy)' */ #define DEVICE_VERSION 1 #define DEVICE_REVISION 0 #define DEVICE_PRIORITY 0 /* Most people will not need a priority and should leave it at zero. */ diff --git a/driver.c b/driver.c index f63307a..7479124 100644 --- a/driver.c +++ b/driver.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #include diff --git a/idetask.c b/idetask.c index b197c46..715e1a6 100644 --- a/idetask.c +++ b/idetask.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #include diff --git a/idetask.h b/idetask.h index 78af96c..2a4b6cc 100644 --- a/idetask.h +++ b/idetask.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #define TASK_NAME "idetask" diff --git a/scsi.c b/scsi.c index 805a178..58d9c69 100644 --- a/scsi.c +++ b/scsi.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #include diff --git a/scsi.h b/scsi.h index 906bd8b..294cb8d 100644 --- a/scsi.h +++ b/scsi.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #define SCSI_CMD_TEST_UNIT_READY 0x00 diff --git a/td64.h b/td64.h index eea7a55..92a6aca 100644 --- a/td64.h +++ b/td64.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #ifndef TD_READ64 diff --git a/wait.h b/wait.h index dc2b7be..22b8b45 100644 --- a/wait.h +++ b/wait.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/* This file is part of liv2ride.device +/* This file is part of lide.device * Copyright (C) 2023 Matthew Harlum */ #ifndef _WAIT_H