50b731f1b7
Derivative of Redox OS (https://www.redox-os.org) adding: - AMD GPU driver (amdgpu) via LinuxKPI compat layer - ext4 filesystem support (ext4d scheme daemon) - ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG) - Custom branding (hostname, os-release, boot identity) Build system is full upstream Redox with RBOS overlay in local/. Patches for kernel, base, and relibc are symlinked from local/patches/ and protected from make clean/distclean. Custom recipes live in local/recipes/ with symlinks into the recipes/ search path. Build: make all CONFIG_NAME=redbear-full Sync: ./local/scripts/sync-upstream.sh
25 lines
1.2 KiB
Diff
25 lines
1.2 KiB
Diff
diff -rupNw source-original/common/stream.cpp source/common/stream.cpp
|
|
--- source-original/common/stream.cpp 2017-12-08 23:21:10.000000000 +0100
|
|
+++ source/common/stream.cpp 2018-12-06 02:01:50.454108198 +0100
|
|
@@ -95,7 +95,7 @@ bool MemoryReadStream::seek(int32 offs,
|
|
break;
|
|
}
|
|
// Post-Condition
|
|
- assert(_pos <= _size);
|
|
+ //assert(_pos <= _size);
|
|
|
|
// Reset end-of-stream flag on a successful seek
|
|
_eos = false;
|
|
diff -rupNw source-original/configure source/configure
|
|
--- source-original/configure 2017-12-08 23:21:13.000000000 +0100
|
|
+++ source/configure 2018-12-06 02:01:50.458108239 +0100
|
|
@@ -3610,7 +3610,7 @@ case $_host_os in
|
|
amigaos* | cygwin* | dreamcast | ds | gamecube | mingw* | n64 | ps2 | ps3 | psp2 | psp | wii | wince)
|
|
_posix=no
|
|
;;
|
|
- 3ds | android | androidsdl | beos* | bsd* | darwin* | freebsd* | gnu* | gph-linux | haiku* | hpux* | iphone | ios7 | irix*| k*bsd*-gnu* | linux* | maemo | mint* | netbsd* | openbsd* | riscos | solaris* | sunos* | uclinux* | webos)
|
|
+ 3ds | android | androidsdl | beos* | bsd* | darwin* | freebsd* | gnu* | gph-linux | haiku* | hpux* | iphone | ios7 | irix*| k*bsd*-gnu* | linux* | maemo | mint* | netbsd* | openbsd* | riscos | redox* | solaris* | sunos* | uclinux* | webos)
|
|
_posix=yes
|
|
;;
|
|
os2-emx*)
|