Skip to content

Commit 7e18d8a

Browse files
authored
R9.51 Pack (#137)
* Clean gitignore * Added dependencies.sh script for intsalling dependencies * Updated config.guess and config.sub + added aarch64 to aros/cpu.h * Update gitignore * Cleanup * Repo Cleanup 01 * Cleanup * Additional sagssd debug lines * Enable 32-Byte Memory Alignment
1 parent ad46e3c commit 7e18d8a

67 files changed

Lines changed: 17000 additions & 13345 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 0 additions & 60 deletions
This file was deleted.

.gitignore

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/Makefile
88
/bin/amiga-m68k
99
/bin/linux-x86_64
10+
/bin/linux-aarch64
1011
/distfiles
1112
/config.status
1213
/contrib
@@ -21,6 +22,11 @@
2122

2223
# Apollo
2324
/ApolloROM.*
25+
aros.rom
26+
ApolloOS.code-workspace
27+
arch/m68k-amiga/boot/romlog.txt
28+
compiler/include/geninc.cfg
29+
ApolloOS.code-workspace
2430

2531
# /boot/
2632
/boot/mmakefile
@@ -2135,8 +2141,17 @@
21352141
/workbench/utilities/Presenter/mmakefile
21362142
config/features.status
21372143
config/config.log
2138-
compiler/include/geninc.cfg
2139-
bin/Sources/.freetype-2.10.0-fetched
2140-
aros.rom
2141-
ApolloOS.code-workspace
2144+
rom/hidds/pci/pcitool/strings.h
2145+
workbench/c/R/strings.h
2146+
workbench/devs/diskimage/device/strings.h
2147+
workbench/devs/diskimage/zune_gui/strings.h
2148+
workbench/libs/muimaster/muimaster_strings.h
2149+
workbench/prefs/appearance/strings.h
2150+
workbench/prefs/boingiconbar/strings.h
2151+
workbench/prefs/printer/strings.h
2152+
workbench/system/find/strings.h
2153+
workbench/tools/BoingIconBar/strings.h
2154+
workbench/tools/InstallAROS/strings.h
2155+
workbench/tools/SysExplorer/strings.h
2156+
workbench/tools/WiMP/strings.h
21422157
arch/m68k-amiga/boot/romlog.txt

Makefile.in

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ makedirs:
128128
$(MKDIR) "$$dir" ; \
129129
else true ; fi ; \
130130
done
131-
@$(IF) [ ! -f $(AROSDIR)/.gdbinit ]; then \
132-
$(CP) $(SRCDIR)/_gdbinit $(AROSDIR)/.gdbinit ; \
133-
else true ; fi
131+
# @$(IF) [ ! -f $(AROSDIR)/.gdbinit ]; then \
132+
# $(CP) $(SRCDIR)/_gdbinit $(AROSDIR)/.gdbinit ; \
133+
# else true ; fi
134134

135135
$(PARSEOFFSETS): $(wildcard $(SRCDIR)/tools/parseoffsets/*.[ch])
136136
@$(ECHO) Building parseoffsets...
@@ -285,7 +285,9 @@ clean:
285285
$(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-ld \
286286
$(GENDIR)/scripts/genshared $(TOOLDIR)/genmf.py \
287287
tools/adflib/myconf.aros tools/collect-aros/env.h \
288-
config/features.status
288+
config/features.status \
289+
ApolloROM.* $(DISTDIR) \
290+
$(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU) $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
289291

290292
# Clean the sources and tools
291293
arch-clean: clean

0 commit comments

Comments
 (0)