rename to lide.device

This commit is contained in:
Matt Harlum 2023-04-30 08:53:29 +00:00
parent 47394f2c4d
commit c48d86ff89
15 changed files with 19 additions and 19 deletions

View File

@ -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

View File

@ -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
lide.device is licensed under the GPL-2.0 only license

2
ata.c
View File

@ -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 <matt@harlum.net>
*/
#include <devices/scsidisk.h>

2
ata.h
View File

@ -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 <matt@harlum.net>
*/
#ifndef _ATA_H

View File

@ -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 <matt@harlum.net>
*/
#include <devices/scsidisk.h>

View File

@ -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 <matt@harlum.net>
*/
#ifndef _ATAPI_H

View File

@ -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 <matt@harlum.net>
*/
#define DBG_INFO 1

View File

@ -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 <matt@harlum.net>
*/
#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. */

View File

@ -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 <matt@harlum.net>
*/
#include <devices/scsidisk.h>

View File

@ -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 <matt@harlum.net>
*/
#include <devices/scsidisk.h>

View File

@ -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 <matt@harlum.net>
*/
#define TASK_NAME "idetask"

2
scsi.c
View File

@ -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 <matt@harlum.net>
*/
#include <devices/scsidisk.h>

2
scsi.h
View File

@ -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 <matt@harlum.net>
*/
#define SCSI_CMD_TEST_UNIT_READY 0x00

2
td64.h
View File

@ -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 <matt@harlum.net>
*/
#ifndef TD_READ64

2
wait.h
View File

@ -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 <matt@harlum.net>
*/
#ifndef _WAIT_H