forked from KolibriOS/kolibrios
system/hdd_info: Post-SVN clean up
- Move source code from `trunk` into program root directory. - Update build files and ASM include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
This commit is contained in:
@@ -423,7 +423,7 @@ tup.append_table(img_files, {
|
|||||||
{"ESKIN", VAR_PROGS .. "/system/eskin/eskin"},
|
{"ESKIN", VAR_PROGS .. "/system/eskin/eskin"},
|
||||||
{"FSPEED", VAR_PROGS .. "/testing/fspeed/fspeed"},
|
{"FSPEED", VAR_PROGS .. "/testing/fspeed/fspeed"},
|
||||||
{"GMON", VAR_PROGS .. "/system/gmon/gmon"},
|
{"GMON", VAR_PROGS .. "/system/gmon/gmon"},
|
||||||
{"HDD_INFO", VAR_PROGS .. "/system/hdd_info/trunk/hdd_info"},
|
{"HDD_INFO", VAR_PROGS .. "/system/hdd_info/hdd_info"},
|
||||||
{"KBD", VAR_PROGS .. "/testing/kbd/trunk/kbd"},
|
{"KBD", VAR_PROGS .. "/testing/kbd/trunk/kbd"},
|
||||||
{"KPACK", VAR_PROGS .. "/other/kpack/trunk/kpack"},
|
{"KPACK", VAR_PROGS .. "/other/kpack/trunk/kpack"},
|
||||||
{"LAUNCHER", VAR_PROGS .. "/system/launcher/trunk/launcher"},
|
{"LAUNCHER", VAR_PROGS .. "/system/launcher/trunk/launcher"},
|
||||||
|
@@ -238,7 +238,7 @@ fasm media\midamp\trunk\midamp.asm %BIN%\nightbuild\midamp
|
|||||||
fasm develop\heed\trunk\heed.asm %BIN%\nightbuild\heed
|
fasm develop\heed\trunk\heed.asm %BIN%\nightbuild\heed
|
||||||
fasm develop\tinypad\trunk\tinypad.asm %BIN%\nightbuild\tinypad
|
fasm develop\tinypad\trunk\tinypad.asm %BIN%\nightbuild\tinypad
|
||||||
fasm system\skincfg\trunk\skincfg.asm %BIN%\nightbuild\skincfg
|
fasm system\skincfg\trunk\skincfg.asm %BIN%\nightbuild\skincfg
|
||||||
fasm system\hdd_info\trunk\hdd_info.asm %BIN%\nightbuild\hdd_info
|
fasm system\hdd_info\hdd_info.asm %BIN%\nightbuild\hdd_info
|
||||||
fasm system\mgb\trunk\mgb.asm %BIN%\nightbuild\mgb
|
fasm system\mgb\trunk\mgb.asm %BIN%\nightbuild\mgb
|
||||||
fasm system\rdsave\trunk\rdsave.asm %BIN%\nightbuild\rdsave
|
fasm system\rdsave\trunk\rdsave.asm %BIN%\nightbuild\rdsave
|
||||||
fasm other\kpack\trunk\kpack.asm %BIN%\nightbuild\kpack
|
fasm other\kpack\trunk\kpack.asm %BIN%\nightbuild\kpack
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
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")
|
tup.include(HELPERDIR .. "/use_fasm.lua")
|
||||||
add_include(tup.getvariantdir())
|
add_include(tup.getvariantdir())
|
||||||
|
|
@@ -1,3 +1,9 @@
|
|||||||
|
; SPDX-License-Identifier: NOASSERTION
|
||||||
|
;
|
||||||
|
|
||||||
|
; Text encoded with Code Page 866 - Cyrillic
|
||||||
|
|
||||||
|
|
||||||
; v. 0.2
|
; v. 0.2
|
||||||
; last update: 19/09/2010
|
; last update: 19/09/2010
|
||||||
; written by: Marat Zakiyanov aka Mario79, aka Mario
|
; written by: Marat Zakiyanov aka Mario79, aka Mario
|
||||||
@@ -38,11 +44,11 @@ SECONDARY_CHANNEL equ 0x177
|
|||||||
include 'lang.inc' ; language support
|
include 'lang.inc' ; language support
|
||||||
|
|
||||||
; <20>¥¦¨¬ë Legacy, Native ¨ ¯à. ¬¥ïîâáï ç¥à¥§ BIOS.
|
; <20>¥¦¨¬ë Legacy, Native ¨ ¯à. ¬¥ïîâáï ç¥à¥§ BIOS.
|
||||||
include '../../../config.inc' ;for nightbuild
|
include '../../config.inc' ;for nightbuild
|
||||||
include '../../../macros.inc'
|
include '../../macros.inc'
|
||||||
include '../../../develop/libraries/box_lib/trunk/box_lib.mac'
|
include '../../develop/libraries/box_lib/trunk/box_lib.mac'
|
||||||
include '../../../KOSfuncs.inc'
|
include '../../KOSfuncs.inc'
|
||||||
include '../../../load_lib.mac'
|
include '../../load_lib.mac'
|
||||||
@use_library
|
@use_library
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
macro ab {
|
macro ab {
|
Reference in New Issue
Block a user