Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 6117122

Browse files
committed
new filesystem
1 parent febe9aa commit 6117122

Some content is hidden

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

71 files changed

+68
-8
lines changed
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
ip route get 1 | awk '{print $7}' &> /addr.txt
3+
sync
-126 KB
Binary file not shown.
554 KB
Binary file not shown.
-153 KB
Binary file not shown.
126 KB
Binary file not shown.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
mkdir -p /inbox
2+
while true; do
3+
find /inbox -type f -name "*.sh" -exec chmod +x "{}" \; -exec /bin/sh -c "{}" \; -exec rm "{}" \;
4+
sleep 2
5+
done
-77.3 KB
Binary file not shown.
77.3 KB
Binary file not shown.
10.4 KB
Binary file not shown.
4 KB
Binary file not shown.
244 KB
Binary file not shown.
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# kill -9 `pidof exe` &> /dev/null
2+
/usr/bin/watcher.sh &> /dev/null &
-10.4 KB
Binary file not shown.

packages/runtime/filesystem/6f944efa.bin

-5
This file was deleted.
153 KB
Binary file not shown.
37.1 KB
Binary file not shown.
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# /etc/inputrc - global inputrc for libreadline
2+
# See readline(3readline) and `info readline' for more information.
3+
4+
# Be 8 bit clean.
5+
set input-meta on
6+
set output-meta on
7+
set bell-style visible
8+
9+
# To allow the use of 8bit-characters like the german umlauts, comment out
10+
# the line below. However this makes the meta key not work as a meta key,
11+
# which is annoying to those which don't need to type in 8-bit characters.
12+
13+
# set convert-meta off
14+
15+
"\e0d": backward-word
16+
"\e0c": forward-word
17+
"\e[h": beginning-of-line
18+
"\e[f": end-of-line
19+
"\e[1~": beginning-of-line
20+
"\e[4~": end-of-line
21+
#"\e[5~": beginning-of-history
22+
#"\e[6~": end-of-history
23+
"\e[3~": delete-char
24+
"\e[2~": quoted-insert
25+
26+
# Common standard keypad and cursor
27+
# (codes courtsey Werner Fink, <werner@suse.de>)
28+
#"\e[1~": history-search-backward
29+
"\e[2~": yank
30+
"\e[3~": delete-char
31+
#"\e[4~": set-mark
32+
"\e[5~": history-search-backward
33+
"\e[6~": history-search-forward
34+
# Normal keypad and cursor of xterm
35+
"\e[F": end-of-line
36+
"\e[H": beginning-of-line
37+
# Application keypad and cursor of xterm
38+
"\eOA": previous-history
39+
"\eOC": forward-char
40+
"\eOB": next-history
41+
"\eOD": backward-char
42+
"\eOF": end-of-line
43+
"\eOH": beginning-of-line
44+

packages/runtime/filesystem/bc4830d4.bin packages/runtime/filesystem/90c52082.bin

+3
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,6 @@ host all all ::1/128 trust
9696
local replication all trust
9797
host replication all 127.0.0.1/32 trust
9898
host replication all ::1/128 trust
99+
# Allow connections from the outside world
100+
host all all 0.0.0.0/0 md5
101+
host all all ::/0 md5
-434 KB
Binary file not shown.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
echo "" &> /addr.txt
3+
sync
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
NAME=Buildroot
2+
VERSION=2022.08
3+
ID=buildroot
4+
VERSION_ID=2022.08
5+
PRETTY_NAME="Buildroot 2022.08"

packages/runtime/filesystem/c0a739ee.bin packages/runtime/filesystem/ca9cac3c.bin

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
# - Connection Settings -
5959

60-
#listen_addresses = 'localhost' # what IP address(es) to listen on;
60+
listen_addresses = '*' # what IP address(es) to listen on;
6161
# comma-separated list of addresses;
6262
# defaults to 'localhost'; use '*' for all
6363
# (change requires restart)
-4.01 KB
Binary file not shown.
-3.56 KB
Binary file not shown.
3.55 KB
Binary file not shown.

packages/runtime/filesystem/filesystem.json

+1-1
Large diffs are not rendered by default.

packages/runtime/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
document.getElementById("terminal").style = '';
3535
}
3636

37-
const bzimageUrl = "./filesystem/123ccf58.bin";
37+
const bzimageUrl = "./filesystem/27d6e559.bin";
3838
const options = {
3939
...baseOptions,
4040
...(boot ? {

0 commit comments

Comments
 (0)