This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bwrap --bind /GENTOO.BAK / --dev /dev --tmpfs /run --dev /sys/devices --ro-bind /GENTOO.BAK/bin /bin --ro-bind /GENTOO.BAK/etc /etc --ro-bind /GENTOO.BAK/usr /usr --ro-bind /GENTOO.BAK/usr/sbin /usr/sbin --ro-bind /GENTOO.BAK/usr/lib64 /usr/lib64 --ro-bind /GENTOO.BAK/usr/lib /lib --proc /proc --dev /dev/dri --dir /var --tmpfs /run --dir /run/user/1001 --bind /home/javashin/ /home/javashin/ --dev-bind /sys/ /sys/ --dev-bind /run/user/1001/pulse /run/user/1001/pulse --unshare-all --unshare-user --share-net --hostname igloo-l440 --uid 1001 --gid 1001 --die-with-parent --as-pid-1 --cap-drop ALL --setenv PATH "/usr/local/bin:/usr/share/Modules/bin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin" --setenv DISPLAY ":0" --dev-bind /dev/dri /dev/dri --setenv EDITOR "nano" --setenv mesa_glthread "true" spotify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
USERID=1000 | |
GROUPID=1000 | |
NEW_HOME=$HOME | |
NATIVEUSERID=`id -u` | |
# The below would enforce even more disconnection from the system but confuses some programs | |
#USERID=123456 | |
#GROUPID=123456 | |
#NEW_HOME=/home/123456 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xhost +local: | |
mount -o bind /proc proc | |
mount -o bind,ro,remount /proc proc | |
mount -o bind /sys sys | |
mount -o bind,ro,remount sys | |
mount -o bind /dev dev | |
mount -o bind,ro,remount /dev dev | |
mount -o bind /dev/v4l dev/v4l | |
mount -t tmpfs -o nodev,nosuid,noexec shm dev/shm | |
mount --rbind /run/ run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- work/ZoF-27703da/module/os/freebsd/zfs/zfs_vnops.c 2019-09-10 10:20:02.000000000 -0400 | |
+++ ZoF-27703da.mod/module/os/freebsd/zfs/zfs_vnops.c 2019-10-04 07:08:51.095118000 -0400 | |
@@ -575,14 +575,15 @@ | |
vm_page_sunbusy(pp); | |
vm_page_lock(pp); | |
if (error) { | |
- if (pp->wire_count == 0 && pp->valid == 0 && | |
- !vm_page_busied(pp)) | |
+ if (!vm_page_busied(pp) && !vm_page_wired(pp) && | |
+ pp->valid == 0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#JavaShin-X Kernel Compile Way#### | |
###1-One/UNO >> Get The Sources / Bajar El Codigo Fuente#### | |
echo "Downloading Kernel-SRC Patch -Zen Sources" | |
cd ~ ; wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.3.tar.xz ; wget https://github.com/zen-kernel/zen-kernel/releases/download/v5.3.1-zen1/v5.3.1-zen1.patch.xz | |
echo "Kernel+Zen patch Fetched DONE" | |
####2-DOs/Two >> Unpack SRC , Descomprimir ###### | |
echo "Untar Sources + patch" | |
tar xvpfJ linux-5.3.tar.xz ; xz -d v5.3.1-zen1.patch.xz | |
echo "Untar Done" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javashin@igloo-l440 ~ $ zcat /proc/config.gz | |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 5.3.0-zen1-jsX-gnu Kernel Configuration | |
# | |
# | |
# Compiler: gcc (Gentoo 9.2.0 p1) 9.2.0 | |
# | |
CONFIG_CC_IS_GCC=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Portage 2.3.76 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop/gnome/systemd, gcc-9.2.0, glibc-2.30-r1, 5.3.0-zen1-jsX-gnu x86_64) | |
================================================================= | |
System uname: Linux-5.3.0-zen1-jsX-gnu-x86_64-Intel-R-_Core-TM-_i5-4200M_CPU_@_2.50GHz-with-gentoo-2.6 | |
KiB Mem: 8037684 total, 2016024 free | |
KiB Swap: 11422700 total, 11422700 free | |
Timestamp of repository gentoo: Mon, 16 Sep 2019 14:15:01 +0000 | |
Head commit of repository gentoo: 565ca0c4c90e59463c01fe6921f2af0ac9ce33fc | |
Timestamp of repository poly-c: Mon, 16 Sep 2019 07:14:27 +0000 | |
sh bash 5.0_p11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ur copy-original/include/GL/glcorearb.h copy-mod/include/GL/glcorearb.h | |
--- copy-original/include/GL/glcorearb.h 2019-09-04 18:38:53.000000000 -0400 | |
+++ copy-mod/include/GL/glcorearb.h 2019-09-06 17:11:16.033317000 -0400 | |
@@ -1,5 +1,5 @@ | |
-#ifndef __gl_glcorearb_h_ | |
-#define __gl_glcorearb_h_ 1 | |
+#ifndef __glcorearb_h_ | |
+#define __glcorearb_h_ 1 | |
#ifdef __cplusplus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
===> Patching for openzfs-kmod-2019080800 | |
cp -f /usr/ports/sysutils/openzfs-kmod/files/zfs_gitrev.h /usr/ports/sysutils/openzfs-kmod/work/ZoF-df21d39/include | |
===> Configuring for openzfs-kmod-2019080800 | |
===> Building for openzfs-kmod-2019080800 | |
(cd /usr/ports/sysutils/openzfs-kmod/work/ZoF-df21d39/module/ && make -f Makefile.bsd CC=cc ) | |
machine -> /usr/src/sys/amd64/include | |
x86 -> /usr/src/sys/x86/include | |
awk -f /usr/src/sys/tools/vnode_if.awk /usr/src/sys/kern/vnode_if.src -p | |
awk -f /usr/src/sys/tools/vnode_if.awk /usr/src/sys/kern/vnode_if.src -q | |
awk -f /usr/src/sys/tools/vnode_if.awk /usr/src/sys/kern/vnode_if.src -h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
===>>> Starting build for sysutils/openzfs-kmod <<<=== | |
===>>> All dependencies are up to date | |
===> Cleaning for openzfs-kmod-2019080800 | |
===> License CDDL accepted by the user | |
===> openzfs-kmod-2019080800 depends on file: /usr/local/sbin/pkg - found | |
===> Fetching all distfiles required by openzfs-kmod-2019080800 for building | |
===> Extracting for openzfs-kmod-2019080800 | |
=> SHA256 Checksum OK for zfsonfreebsd-ZoF-v2019080800-df21d39_GH0.tar.gz. |