mirror of
https://github.com/LIV2/lide.device.git
synced 2025-12-06 00:32:45 +00:00
rename to lide.device
This commit is contained in:
parent
47394f2c4d
commit
c48d86ff89
2
Makefile
2
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
|
||||
|
||||
@ -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
|
||||
[](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
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#include <devices/scsidisk.h>
|
||||
|
||||
2
ata.h
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#ifndef _ATA_H
|
||||
|
||||
2
atapi.c
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#include <devices/scsidisk.h>
|
||||
|
||||
2
atapi.h
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#ifndef _ATAPI_H
|
||||
|
||||
2
debug.h
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#define DBG_INFO 1
|
||||
|
||||
6
device.h
6
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 <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. */
|
||||
|
||||
2
driver.c
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#include <devices/scsidisk.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 <matt@harlum.net>
|
||||
*/
|
||||
#include <devices/scsidisk.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 <matt@harlum.net>
|
||||
*/
|
||||
#define TASK_NAME "idetask"
|
||||
|
||||
2
scsi.c
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#include <devices/scsidisk.h>
|
||||
|
||||
2
scsi.h
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#define SCSI_CMD_TEST_UNIT_READY 0x00
|
||||
|
||||
2
td64.h
2
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 <matt@harlum.net>
|
||||
*/
|
||||
#ifndef TD_READ64
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user