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
# edit .port.sh | |
# Comment out PATH, and use the good path set in .bashrc (see my .bashrc gist for a working example) | |
# change the gcc compiler paths to point to proper didbs path (i.e. current) | |
# this allows you use use 'current' to point to whatever didbs you want, i.e | |
# i built my own didbs w/ MIPS4 and have current symlinked to that - but you can | |
# always just leave current symlinked with the binary distro you un-tarred | |
-------snippet------- |
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
Ensure you have the LATEST 7.4.4 packages and the math.h patch installed: | |
bash-4.4# versions |grep 7.4.4 | |
I c++_dev 09/25/2019 C++ Headers and Libraries, 7.4.4m | |
I c++_eoe 09/25/2019 Standard Execution Environment (C++ Headers and Libraries, 7.4.4m) | |
I c++_fe 09/30/2019 C++ Front-end, 7.4.4m | |
I c_dev 09/25/2019 C Headers and Libraries, 7.4.4m | |
I c_fe 09/30/2019 C Front-end, 7.4.4m | |
I compiler_dev 09/25/2019 Base Compiler Development Environment, 7.4.4m | |
I compiler_eoe 09/25/2019 IRIX Standard Execution Environment (Base Compiler Headers and Libraries, 7.4.4m) |
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
For bash you should have two dot files in your home dir: | |
.bash_profile | |
.bashrc | |
I keep profile very simple, and have everything in bashrc as you can see.... | |
888 888 dP,e, ,e, 888 |
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
i3-gaps | |
* lubuntu on MacBook 1,1 | |
* http://cdimage.ubuntu.com/lubuntu/releases/18.04.3/release/lubuntu-18.04-alternate-i386.iso | |
h2. Unxmal's Config: | |
https://github.com/unxmaal/dotfiles/blob/master/i3-config | |
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
Building 0.1.9 - on Challenge/6.5.20 | |
Full build path - assumes you do not have dids installed. Wget needs to be done by another system | |
$ su | |
# mkdir -p /usr/didbs | |
# chown myusername /usr/didbs | |
# exit | |
$ cd | |
$ wget https://github.com/danielhams/didbs/releases/download/0.1.9/usr-didbs-0.1.9-n32m3gcc.tar.gz |
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
dillera@challenge /usr/didbs/didbs.git (master) $ V=1 ./bootstrap.pl \ | |
> --packagedir /usr/didbs/didbs6gcc/packages \ | |
> --builddir /usr/didbs/didbs6gcc/sources \ | |
> --installdir /usr/didbs/didbs6gcc \ | |
> --compiler gcc \ | |
> --isa mips3 \ | |
> --elfwidth n32 | |
2019-10-25 11:06:20.470 didbs bootstrapper script version 0.1.6 | |
2019-10-25 11:06:20.472 | |
2019-10-25 11:06:20.488 Checking for /usr/didbs/current symbolic link..1 |
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
#!/usr/bin/env bash | |
# read in irixports src & local packages.db then build the rest | |
BASE=~/irixports/ports | |
DB=~/.local/packages.db | |
portsSrcArray=($(ls -1 $BASE)) | |
localInstalledArray=($(cat $DB | awk '{ print $2 }')) | |
toBuildArray=(`echo ${localInstalledArray[@]} ${portsSrcArray[@]} | tr ' ' '\n' | sort | uniq -u `) |
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
rxvt|rxvt terminal with 256 colors (X Window System), | |
# | |
# (P) indicates that padding may be specified | |
# | |
# #[1-9] in the description field indicates that the string is passed through | |
# tparm with parms as given (#i). | |
# | |
# (P*) indicates that padding may vary in proportion to the number of lines | |
# affected | |
# |
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
# 2019 mrxvt config for IRIX | |
# from danielhams and internet | |
# | |
# comprehensive options at: https://github.com/markkolich/config/blob/master/terminals/mrxvt.rc | |
# | |
# ctl-shift-t - opens new tab | |
# | |
# | |
# Start mrxvt for SGI winterm | |
# |
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
dillera@challenge /usr/didbs/didbs.git (master) $ cat ~/.bashrc | |
echo setup `hostname` basic env | |
echo ---------------------------- | |
echo ' ' | |
#stty intr '^C' echoe | |
export TERM=xterm | |
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\\[\033[00m\] $ " |