Update copyright notices

This commit is contained in:
Terence Boldt 2022-01-10 23:00:58 -05:00
parent b5a679a2e6
commit c6fc90e21f
23 changed files with 89 additions and 24 deletions

View File

@ -1,3 +1,10 @@
; Copyright Terence J. Boldt (c)2020-2022
; Use of this source code is governed by an MIT
; license that can be found in the LICENSE file.
; This file contains the source for the firmware
; that was formerly used to act as a pseudo-shell
;ProDOS Zero Page
Command = $42 ;ProDOS Command
Unit = $43 ;ProDOS unit (SDDD0000)

View File

@ -1,3 +1,12 @@
; Copyright Terence J. Boldt (c)2020-2022
; Use of this source code is governed by an MIT
; license that can be found in the LICENSE file.
; This file contains the source for the firmware
; that allows the Apple II to boot from the card
; and for ProDOS to recognize the card as two
; hard drivers
;ProDOS Zero Page
Command = $42 ;ProDOS Command
Unit = $43 ;ProDOS unit (SDDD0000)

View File

@ -1,3 +1,11 @@
; Copyright Terence J. Boldt (c)2020-2022
; Use of this source code is governed by an MIT
; license that can be found in the LICENSE file.
; This file contains the source for the firmware
; that was formerly used to copy files from RPi
; to Apple II RAM
;ProDOS Zero Page
Command = $42 ;ProDOS Command
Unit = $43 ;ProDOS unit (SDDD0000)

View File

@ -1,3 +1,12 @@
; Copyright Terence J. Boldt (c)2020-2022
; Use of this source code is governed by an MIT
; license that can be found in the LICENSE file.
; This file contains the source for the firmware
; that displays the copyright message on boot
; and checks for the RPi status to be ready before
; attempting to boot
;ProDOS Zero Page
Command = $42 ;ProDOS Command
Unit = $43 ;ProDOS unit (SDDD0000)

View File

@ -1,3 +1,12 @@
; Copyright Terence J. Boldt (c)2021-2022
; Use of this source code is governed by an MIT
; license that can be found in the LICENSE file.
; This file contains the source for the RPI.COMMAND
; application that runs on the Apple II and extends
; ProDOS BASIC.SYSTEM to add the RPI command which
; allows commands to be executed on the Raspberry Pi
.ORG $300
INBUF = $200 ;GETLN input buffer.
WAIT = $FCA8 ;Monitor wait routine.

View File

@ -1,3 +1,11 @@
; Copyright Terence J. Boldt (c)2021-2022
; Use of this source code is governed by an MIT
; license that can be found in the LICENSE file.
; This file contains the source for the SHELL
; application that runs on the Apple II to talk
; to the Raspberry Pi
;ProDOS Zero Page
Command = $42 ;ProDOS Command
Unit = $43 ;ProDOS unit (SDDD0000)

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2020-2021 Terence J. Boldt
Copyright (c) 2020-2022 Terence J. Boldt
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,4 +1,4 @@
// Copyright Terence J. Boldt (c)2021
// Copyright Terence J. Boldt (c)2021-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.

View File

@ -1,4 +1,4 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.

View File

@ -1,4 +1,4 @@
// Copyright Terence J. Boldt (c)2021
// Copyright Terence J. Boldt (c)2021-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.

View File

@ -1,4 +1,4 @@
// Copyright Terence J. Boldt (c)2021
// Copyright Terence J. Boldt (c)2021-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2021
// Copyright Terence J. Boldt (c)2021-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains VT100 terminal emulation
// This file contains VT100 terminal emulation
package a2io

View File

@ -1,10 +1,11 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the main driver code for the Raspberry Pi side of
// This file contains the main driver code for the Raspberry Pi side of
// the Apple2-IO-RPi hardware. Commands are sent from the Apple II and
// responses are sent back from the Raspberry Pi.
package main
import (

View File

@ -1,4 +1,4 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.

View File

@ -1,4 +1,4 @@
// Copyright Terence J. Boldt (c)2021
// Copyright Terence J. Boldt (c)2021-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the handler for executing Linux and internal
// This file contains the handler for executing Linux and internal
// commands
package handlers
@ -219,7 +219,7 @@ func a2wifiSelect(linuxCommand string) (string, error) {
region := params[4]
linuxCommand = "printf \"country=%s\\nupdate_config=1\\nctrl_interface=/var/run/wpa_supplicant\\n\\nnetwork={\\n scan_ssid=1\\n ssid=\\\"%s\\\"\n psk=\\\"%s\\\"\\n}\\n\" " +
region + " " +
ssid + " " +
ssid + " " +
psk + " " +
" > /tmp/wpa_supplicant.conf; " +
"sudo mv /tmp/wpa_supplicant.conf /etc/wpa_supplicant/; " +

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the handler for retrieving the ProDOS timestamp
// This file contains the handler for retrieving the ProDOS timestamp
// based on the current time
package handlers

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the handler for loading files directly from the
// This file contains the handler for loading files directly from the
// Raspberry Pi onto the Apple II
package handlers

View File

@ -1,3 +1,10 @@
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file contains the tests for the handler for
// loading files directly from the Raspberry Pi onto the Apple II
package handlers
import (

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the handler for displaying the menu of choices on
// This file contains the handler for displaying the menu of choices on
// the Apple II
package handlers

View File

@ -1,3 +1,10 @@
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file contains the test for the handler for
// displaying the menu of choices on the Apple II
package handlers
import (

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the handler for displaying the menu of choices on
// This file contains the handler for displaying the menu of choices on
// the Apple II
package handlers

View File

@ -1,8 +1,8 @@
// Copyright Terence J. Boldt (c)2020-2021
// Copyright Terence J. Boldt (c)2020-2022
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file is contains the handler for executing Linux shell
// This file contains the handler for executing Linux shell
package handlers