programs/other: Post-SVN tidy (#434)

- Move source code from `trunk` into root directory for each program.
- Update build files and ASM include paths. Add SPDX license header where appropriate.
- Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.

(Work towards #75, point 3)

Reviewed-on: #434
Reviewed-by: Burer <burer@kolibrios.org>
Reviewed-by: Mikhail Frolov <mixa.frolov2003@gmail.com>
Co-authored-by: Andrew <dent.ace@gmail.com>
Co-committed-by: Andrew <dent.ace@gmail.com>
This commit was merged in pull request #434.
This commit is contained in:
2026-04-22 06:33:49 +00:00
committed by Burer
parent f7a26ece7a
commit f08fe1f2a0
34 changed files with 601 additions and 586 deletions
+1 -1
View File
@@ -428,7 +428,7 @@ tup.append_table(img_files, {
{"GMON", VAR_PROGS .. "/system/gmon/gmon"},
{"HDD_INFO", VAR_PROGS .. "/system/hdd_info/hdd_info"},
{"KBD", VAR_PROGS .. "/testing/kbd/kbd"},
{"KPACK", VAR_PROGS .. "/other/kpack/trunk/kpack"},
{"KPACK", VAR_PROGS .. "/other/kpack/kpack"},
{"LAUNCHER", VAR_PROGS .. "/system/launcher/launcher"},
{"LOADDRV", VAR_PROGS .. "/system/loaddrv/loaddrv"},
{"MAGNIFY", VAR_PROGS .. "/system/magnify/magnify"},
+2 -2
View File
@@ -240,7 +240,7 @@ fasm system\skincfg\skincfg.asm %BIN%\nightbuild\skincfg
fasm system\hdd_info\hdd_info.asm %BIN%\nightbuild\hdd_info
fasm testing\mgb\mgb.asm %BIN%\nightbuild\mgb
fasm system\rdsave\rdsave.asm %BIN%\nightbuild\rdsave
fasm other\kpack\trunk\kpack.asm %BIN%\nightbuild\kpack
fasm other\kpack\kpack.asm %BIN%\nightbuild\kpack
fasm other\rtfread\rtfread.asm %BIN%\nightbuild\rtfread
;restore
echo __CPU_type fix %res% > config.inc
@@ -299,7 +299,7 @@ echo *
echo Compressing develop
echo *
kpack %BIN%\cmd
rem kpack %BIN%\cmd
kpack %BIN%\develop\fasm
kpack %BIN%\develop\h2d2b
kpack %BIN%\demos\heed
File diff suppressed because it is too large Load Diff
@@ -1,5 +1,5 @@
if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../../.." or tup.getconfig("HELPERDIR")
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir())
@@ -1,10 +1,13 @@
; SPDX-License-Identifier: NOASSERTION
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ;
; Audio CD player; code by Dmitry Yushko - dma@bn.by ;
; ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
include "..\..\..\..\macros.inc"
include "..\..\..\macros.inc"
include "lang.inc"
FALSE equ 0
@@ -1,3 +1,6 @@
; SPDX-License-Identifier: NOASSERTION
;
; CMD - Command line interpreter
; copyleft Chemist dmitry_gt@tut.by
;
@@ -18,7 +21,7 @@ use32
dd 0x0
dd 0x0
include "..\..\..\..\macros.inc"
include "..\..\..\macros.inc"
include "lang.inc" ; Language support for locales: de_DE, en_US.
START:
@@ -1,5 +1,5 @@
if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../../.." or tup.getconfig("HELPERDIR")
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir())
@@ -1,3 +1,9 @@
; SPDX-License-Identifier: NOASSERTION
;
; Text encoded with Code Page 866 - Cyrillic
; project name: SYSTREE FILE COPIER
; version: 1.2
; Mario79 23/10/06
@@ -26,9 +32,9 @@
dd 0x10000 ; esp
dd 0x0 , 0x0 ; I_Param , I_Icon
include 'lang.inc'
include '..\..\..\..\macros.inc' ; very useful stuff for MeOS
STRLEN = 48 ; maximal length of filename
include 'lang.inc' ; Language support for locales: ru_RU (CP866), en_US, de_DE.
include '..\..\..\macros.inc'
STRLEN = 48 ; maximum filename length
START: ; start of execution
@@ -315,9 +321,9 @@ get_param_info:
source_info: ; SOURCE FILEINFO
.subfunction dd 0 ; 0=READ
.start dd 0
.size_high dd 0
.size dd 0
.start dd 0
.size_high dd 0
.size dd 0
.return dd 0x10000
.name:
db '/hd0/1/kernel/kernel.mnt',0 ; ASCIIZ dir & filename
@@ -325,9 +331,9 @@ source_info: ; SOURCE FILEINFO
dest_info: ; DESTINATION FILEINFO
.subfunction dd 2 ; 0=WRITE
.start dd 0
.size_high dd 0
.size dd 0
.start dd 0
.size_high dd 0
.size dd 0
.return dd 0x10000
.name:
db '/sys/kernel.mnt',0 ; ASCIIZ dir & filename