diff --git a/.gitchangelog.rc b/.gitchangelog.rc new file mode 100644 index 0000000..b6bb051 --- /dev/null +++ b/.gitchangelog.rc @@ -0,0 +1,289 @@ +# -*- coding: utf-8; mode: python -*- +## +## Format +## +## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...] +## +## Description +## +## ACTION is one of 'chg', 'fix', 'new' +## +## Is WHAT the change is about. +## +## 'chg' is for refactor, small improvement, cosmetic changes... +## 'fix' is for bug fixes +## 'new' is for new features, big improvement +## +## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc' +## +## Is WHO is concerned by the change. +## +## 'dev' is for developpers (API changes, refactors...) +## 'usr' is for final users (UI changes) +## 'pkg' is for packagers (packaging changes) +## 'test' is for testers (test only related changes) +## 'doc' is for doc guys (doc only changes) +## +## COMMIT_MSG is ... well ... the commit message itself. +## +## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic' +## +## They are preceded with a '!' or a '@' (prefer the former, as the +## latter is wrongly interpreted in github.) Commonly used tags are: +## +## 'refactor' is obviously for refactoring code only +## 'minor' is for a very meaningless change (a typo, adding a comment) +## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...) +## 'wip' is for partial functionality but complete subfunctionality. +## +## Example: +## +## new: usr: support of bazaar implemented +## chg: re-indentend some lines !cosmetic +## new: dev: updated code to be compatible with last version of killer lib. +## fix: pkg: updated year of licence coverage. +## new: test: added a bunch of test around user usability of feature X. +## fix: typo in spelling my name in comment. !minor +## +## Please note that multi-line commit message are supported, and only the +## first line will be considered as the "summary" of the commit message. So +## tags, and other rules only applies to the summary. The body of the commit +## message will be displayed in the changelog without reformatting. + + +## +## ``ignore_regexps`` is a line of regexps +## +## Any commit having its full commit message matching any regexp listed here +## will be ignored and won't be reported in the changelog. +## +ignore_regexps = [ + r'@minor', r'!minor', + r'@cosmetic', r'!cosmetic', + r'@refactor', r'!refactor', + r'@wip', r'!wip', + r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:', + r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:', + r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$', + r'^$', ## ignore commits with empty messages +] + + +## ``section_regexps`` is a list of 2-tuples associating a string label and a +## list of regexp +## +## Commit messages will be classified in sections thanks to this. Section +## titles are the label, and a commit is classified under this section if any +## of the regexps associated is matching. +## +## Please note that ``section_regexps`` will only classify commits and won't +## make any changes to the contents. So you'll probably want to go check +## ``subject_process`` (or ``body_process``) to do some changes to the subject, +## whenever you are tweaking this variable. +## +section_regexps = [ + ('New', [ + r'^[nN]ew\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', + ]), + ('Changes', [ + r'^[cC]hg\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', + ]), + ('Fix', [ + r'^[fF]ix\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', + ]), + + ('Other', None ## Match all lines + ), + +] + + +## ``body_process`` is a callable +## +## This callable will be given the original body and result will +## be used in the changelog. +## +## Available constructs are: +## +## - any python callable that take one txt argument and return txt argument. +## +## - ReSub(pattern, replacement): will apply regexp substitution. +## +## - Indent(chars=" "): will indent the text with the prefix +## Please remember that template engines gets also to modify the text and +## will usually indent themselves the text if needed. +## +## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns +## +## - noop: do nothing +## +## - ucfirst: ensure the first letter is uppercase. +## (usually used in the ``subject_process`` pipeline) +## +## - final_dot: ensure text finishes with a dot +## (usually used in the ``subject_process`` pipeline) +## +## - strip: remove any spaces before or after the content of the string +## +## - SetIfEmpty(msg="No commit message."): will set the text to +## whatever given ``msg`` if the current text is empty. +## +## Additionally, you can `pipe` the provided filters, for instance: +#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ") +#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') +#body_process = noop +body_process = ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$', r'') | strip + + +## ``subject_process`` is a callable +## +## This callable will be given the original subject and result will +## be used in the changelog. +## +## Available constructs are those listed in ``body_process`` doc. +subject_process = (strip | + ReSub(r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n@]*)(@[a-z]+\s+)*$', r'\4') | + SetIfEmpty("No commit message.") | ucfirst | final_dot) + + +## ``tag_filter_regexp`` is a regexp +## +## Tags that will be used for the changelog must match this regexp. +## +tag_filter_regexp = r'^[0-9-]+$' + + +## ``unreleased_version_label`` is a string or a callable that outputs a string +## +## This label will be used as the changelog Title of the last set of changes +## between last valid tag and HEAD if any. +unreleased_version_label = "(unreleased)" + + +## ``output_engine`` is a callable +## +## This will change the output format of the generated changelog file +## +## Available choices are: +## +## - rest_py +## +## Legacy pure python engine, outputs ReSTructured text. +## This is the default. +## +## - mustache() +## +## Template name could be any of the available templates in +## ``templates/mustache/*.tpl``. +## Requires python package ``pystache``. +## Examples: +## - mustache("markdown") +## - mustache("restructuredtext") +## +## - makotemplate() +## +## Template name could be any of the available templates in +## ``templates/mako/*.tpl``. +## Requires python package ``mako``. +## Examples: +## - makotemplate("restructuredtext") +## +output_engine = rest_py +#output_engine = mustache("restructuredtext") +#output_engine = mustache("markdown") +#output_engine = makotemplate("restructuredtext") + + +## ``include_merge`` is a boolean +## +## This option tells git-log whether to include merge commits in the log. +## The default is to include them. +include_merge = True + + +## ``log_encoding`` is a string identifier +## +## This option tells gitchangelog what encoding is outputed by ``git log``. +## The default is to be clever about it: it checks ``git config`` for +## ``i18n.logOutputEncoding``, and if not found will default to git's own +## default: ``utf-8``. +#log_encoding = 'utf-8' + + +## ``publish`` is a callable +## +## Sets what ``gitchangelog`` should do with the output generated by +## the output engine. ``publish`` is a callable taking one argument +## that is an interator on lines from the output engine. +## +## Some helper callable are provided: +## +## Available choices are: +## +## - stdout +## +## Outputs directly to standard output +## (This is the default) +## +## - FileInsertAtFirstRegexMatch(file, pattern, idx=lamda m: m.start()) +## +## Creates a callable that will parse given file for the given +## regex pattern and will insert the output in the file. +## ``idx`` is a callable that receive the matching object and +## must return a integer index point where to insert the +## the output in the file. Default is to return the position of +## the start of the matched string. +## +## - FileRegexSubst(file, pattern, replace, flags) +## +## Apply a replace inplace in the given file. Your regex pattern must +## take care of everything and might be more complex. Check the README +## for a complete copy-pastable example. +## +# publish = FileInsertIntoFirstRegexMatch( +# "CHANGELOG.rst", +# r'/(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/', +# idx=lambda m: m.start(1) +# ) +#publish = stdout + + +## ``revs`` is a list of callable or a list of string +## +## callable will be called to resolve as strings and allow dynamical +## computation of these. The result will be used as revisions for +## gitchangelog (as if directly stated on the command line). This allows +## to filter exaclty which commits will be read by gitchangelog. +## +## To get a full documentation on the format of these strings, please +## refer to the ``git rev-list`` arguments. There are many examples. +## +## Using callables is especially useful, for instance, if you +## are using gitchangelog to generate incrementally your changelog. +## +## Some helpers are provided, you can use them:: +## +## - FileFirstRegexMatch(file, pattern): will return a callable that will +## return the first string match for the given pattern in the given file. +## If you use named sub-patterns in your regex pattern, it'll output only +## the string matching the regex pattern named "rev". +## +## - Caret(rev): will return the rev prefixed by a "^", which is a +## way to remove the given revision and all its ancestor. +## +## Please note that if you provide a rev-list on the command line, it'll +## replace this value (which will then be ignored). +## +## If empty, then ``gitchangelog`` will act as it had to generate a full +## changelog. +## +## The default is to use all commits to make the changelog. +#revs = ["^1.0.3", ] +#revs = [ +# Caret( +# FileFirstRegexMatch( +# "CHANGELOG.rst", +# r"(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n")), +# "HEAD" +#] +revs = [] diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 574d84d..a2488ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,19 @@ jobs: outputs: upload_url: ${{ steps.create_release.outputs.upload_url }} steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + submodules: false - name: Generate release name id: release_name # https://github.community/t/how-to-get-just-the-tag-name/16241/4 run: echo ::set-output name=name::${GITHUB_REF/refs\/*s\//} + - name: Generate changes file + uses: sarnold/gitchangelog-action@master + with: + config_file: .gitchangelog.rc + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Create release id: create_release uses: actions/create-release@v1 @@ -24,8 +33,7 @@ jobs: with: tag_name: ${{ steps.release_name.outputs.name }} release_name: ${{ steps.release_name.outputs.name }} - body: | - Build ${{ steps.release_name.outputs.name }} + body_path: CHANGES.md draft: false prerelease: true @@ -39,7 +47,11 @@ jobs: - name: Workaround for apt update failure run: sudo rm /etc/apt/sources.list.d/github_git-lfs.* - name: Install deps - run: sudo apt update && sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi qemu-user-static debootstrap + run: sudo apt update && sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi qemu-user-static debootstrap python3-pip + - name: Upgrade pip and setuptools + run: pip3 install -U pip setuptools + - name: Install listconfig + run: pip3 install listconfig - name: Configure for Linux run: make ldefconfig - name: Build Linux @@ -63,6 +75,17 @@ jobs: asset_path: release.zip asset_name: ${{ steps.archive_name.outputs.name }}.zip asset_content_type: application/zip + - name: Generate listconfig + run: listconfig ./linux-brain/Kconfig ./linux-brain/.config > listconfig + - name: Upload listconfig + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: listconfig + asset_name: listconfig + asset_content_type: text/plain build-uboot: runs-on: ubuntu-20.04 @@ -82,6 +105,8 @@ jobs: nk: edsh5exe.bin - model: sh6 nk: edsh6exe.bin + - model: sh7 + nk: edsh7exe.bin steps: - uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index 3dc617b..d43a944 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ env -debian +brainux cache/* !cache/.gitkeep nk.bin diff --git a/image/build_image.sh b/image/build_image.sh index d739f95..9149051 100755 --- a/image/build_image.sh +++ b/image/build_image.sh @@ -9,7 +9,7 @@ IMG=${REPO}/image/sd.img mkdir -p ${WORK} -for i in $(seq 1 6); do +for i in $(seq 1 7); do make -C ${REPO}/u-boot-brain pwsh${i}_defconfig make -j${JOBS} -C ${REPO}/u-boot-brain u-boot.bin ${REPO}/nkbin_maker/bsd-ce ${REPO}/u-boot-brain/u-boot.bin diff --git a/linux-brain b/linux-brain index 114b17b..1f760c2 160000 --- a/linux-brain +++ b/linux-brain @@ -1 +1 @@ -Subproject commit 114b17b84a8fad35877f5ba9c1d9ce909f44ef12 +Subproject commit 1f760c223052df2c924cf6fe0b622676bbb35796 diff --git a/os-brainux/override.sh b/os-brainux/override.sh index 8cafb7e..2a5a262 100755 --- a/os-brainux/override.sh +++ b/os-brainux/override.sh @@ -9,3 +9,11 @@ install -g root -o root -m 0644 $SRC/usr/lib/os-release $DST/usr/lib/os-release install -g root -o root -m 0644 $SRC/etc/issue $DST/etc/issue install -g root -o root -m 0644 $SRC/etc/issue.net $DST/etc/issue.net install -g root -o root -m 0644 $SRC/etc/motd $DST/etc/motd + +install -g root -o root -m 0644 $SRC/etc/X11/xorg.conf $DST/etc/X11/xorg.conf +install -g root -o root -m 0644 $SRC/etc/X11/Xsession.d/96calibrate $DST/etc/X11/Xsession.d/96calibrate + +install -g root -o root -m 0644 -D $SRC/etc/xdg/weston/weston.ini $DST/etc/xdg/weston/weston.ini + +install -g root -o root -m 0644 -D $SRC/home/user/lxterminal/lxterminal.conf $DST/home/user/lxterminal/lxterminal.conf +install -g root -o root -m 0644 -D $SRC/etc/jwm/system.jwmrc $DST/etc/jwm/system.jwmrc diff --git a/os-brainux/override/etc/X11/Xsession.d/96calibrate b/os-brainux/override/etc/X11/Xsession.d/96calibrate new file mode 100644 index 0000000..7ea3431 --- /dev/null +++ b/os-brainux/override/etc/X11/Xsession.d/96calibrate @@ -0,0 +1,4 @@ +if [ ! -e /etc/X11/xorg.conf.d/99-calibrator.conf ]; then + xinput_calibrator --output-filename /etc/X11/xorg.conf.d/99-calibrator.conf +fi + diff --git a/os-brainux/override/etc/X11/xorg.conf b/os-brainux/override/etc/X11/xorg.conf new file mode 100644 index 0000000..337e09e --- /dev/null +++ b/os-brainux/override/etc/X11/xorg.conf @@ -0,0 +1,8 @@ +Section "Device" + Identifier "device" + Driver "fbdev" +EndSection +Section "Screen" + Identifier "screen" + Device "device" +EndSection diff --git a/os-brainux/override/etc/jwm/system.jwmrc b/os-brainux/override/etc/jwm/system.jwmrc new file mode 100644 index 0000000..3a5789e --- /dev/null +++ b/os-brainux/override/etc/jwm/system.jwmrc @@ -0,0 +1,216 @@ + + + + + + /etc/jwm/debian-menu + lxterminal + + + xlock -mode blank + + + + + + + + + + + + + Pidgin + + + + xterm + + + + xclock + + + + + + + + root:1 + + + + + + + + + + + + + + Sans-9:bold + 4 + 21 + 3 + #FFFFFF + #555555 + #777777 + 0.5 + + #FFFFFF + #0077CC + #1AA0FF + 1.0 + + + + Sans-9 + #222222 + #FFFFFF + #222222 + 0.75 + + + Sans-9 + + #FFFFFF + #333333 + + #FFFFFF + #222222 + + + #3B3B3B + #555555 + #333333 + #FFFFFF + + #0077CC + #004488 + + + + Sans-9 + #FFFFFF + #333333 + #000000 + + #FFFFFF + #0077CC + + 0.85 + + + Sans-9 + #000000 + #999999 + + + + /usr/share/icons/gnome/256x256/actions + /usr/share/icons/gnome/256x256/apps + /usr/share/icons/gnome/256x256/categories + /usr/share/icons/gnome/256x256/devices + /usr/share/icons/gnome/256x256/emblems + /usr/share/icons/gnome/256x256/mimetypes + /usr/share/icons/gnome/256x256/places + /usr/share/icons/gnome/256x256/status + /usr/share/icons/gnome/32x32/actions + /usr/share/icons/gnome/32x32/animations + /usr/share/icons/gnome/32x32/apps + /usr/share/icons/gnome/32x32/categories + /usr/share/icons/gnome/32x32/devices + /usr/share/icons/gnome/32x32/emblems + /usr/share/icons/gnome/32x32/mimetypes + /usr/share/icons/gnome/32x32/places + /usr/share/icons/gnome/32x32/status + /usr/share/icons/gnome/scalable/actions + /usr/share/icons/gnome/scalable/apps + /usr/share/icons/gnome/scalable/categories + /usr/share/icons/gnome/scalable/devices + /usr/share/icons/gnome/scalable/emblems + /usr/share/icons/gnome/scalable/mimetypes + /usr/share/icons/gnome/scalable/places + /usr/share/icons/gnome/scalable/status + /usr/share/icons/hicolor/256x256/apps + /usr/share/icons/hicolor/256x256/mimetypes + /usr/share/icons/hicolor/32x32/actions + /usr/share/icons/hicolor/32x32/apps + /usr/share/icons/hicolor/32x32/categories + /usr/share/icons/hicolor/32x32/devices + /usr/share/icons/hicolor/32x32/emblems + /usr/share/icons/hicolor/32x32/mimetypes + /usr/share/icons/hicolor/32x32/status + /usr/share/icons/hicolor/512x512/apps + /usr/share/icons/hicolor/512x512/mimetypes + /usr/share/icons/hicolor/scalable/actions + /usr/share/icons/hicolor/scalable/apps + /usr/share/icons/hicolor/scalable/categories + /usr/share/icons/hicolor/scalable/devices + /usr/share/icons/hicolor/scalable/emblems + /usr/share/icons/hicolor/scalable/mimetypes + /usr/share/icons/hicolor/scalable/places + /usr/share/icons/hicolor/scalable/status + /usr/share/icons + /usr/share/pixmaps + + /usr/local/share/jwm + + + + + + + #111111 + + + + 400 + + + 2 + + + sloppy + + + border + + + opaque + + + opaque + + + up + down + right + left + left + down + up + right + select + escape + + nextstacked + close + desktop# + root:1 + window + maximize + rdesktop + ldesktop + udesktop + ddesktop + + diff --git a/os-brainux/override/etc/xdg/weston/weston.ini b/os-brainux/override/etc/xdg/weston/weston.ini new file mode 100644 index 0000000..c7f25d6 --- /dev/null +++ b/os-brainux/override/etc/xdg/weston/weston.ini @@ -0,0 +1,4 @@ +[core] +xwayland=true +backend=fbdev-backend.so + diff --git a/os-brainux/override/home/user/lxterminal/lxterminal.conf b/os-brainux/override/home/user/lxterminal/lxterminal.conf new file mode 100644 index 0000000..85c6190 --- /dev/null +++ b/os-brainux/override/home/user/lxterminal/lxterminal.conf @@ -0,0 +1,53 @@ +[general] +fontname=Noto Sans Mono CJK JP 10 +selchars=-A-Za-z0-9,./?%&#:_ +scrollback=1000 +bgcolor=rgb(0,0,0) +fgcolor=rgb(211,215,207) +palette_color_0=rgb(0,0,0) +palette_color_1=rgb(205,0,0) +palette_color_2=rgb(78,154,6) +palette_color_3=rgb(196,160,0) +palette_color_4=rgb(52,101,164) +palette_color_5=rgb(117,80,123) +palette_color_6=rgb(6,152,154) +palette_color_7=rgb(211,215,207) +palette_color_8=rgb(85,87,83) +palette_color_9=rgb(239,41,41) +palette_color_10=rgb(138,226,52) +palette_color_11=rgb(252,233,79) +palette_color_12=rgb(114,159,207) +palette_color_13=rgb(173,127,168) +palette_color_14=rgb(52,226,226) +palette_color_15=rgb(238,238,236) +color_preset=Tango +disallowbold=false +cursorblinks=false +cursorunderline=false +audiblebell=false +tabpos=top +geometry_columns=80 +geometry_rows=24 +hidescrollbar=false +hidemenubar=false +hideclosebutton=false +hidepointer=false +disablef10=false +disablealt=false +disableconfirm=false + +[shortcut] +new_window_accel=n +new_tab_accel=t +close_tab_accel=w +close_window_accel=q +copy_accel=c +paste_accel=v +name_tab_accel=i +previous_tab_accel=Page_Up +next_tab_accel=Page_Down +move_tab_left_accel=Page_Up +move_tab_right_accel=Page_Down +zoom_in_accel=plus +zoom_out_accel=underscore +zoom_reset_accel=parenright diff --git a/os-brainux/setup_brainux.sh b/os-brainux/setup_brainux.sh index df5e677..2b6885a 100755 --- a/os-brainux/setup_brainux.sh +++ b/os-brainux/setup_brainux.sh @@ -1,6 +1,13 @@ #!/bin/bash +set -uex -o pipefail -TIMEZONE="Asia/Tokyo" +if [ ! -v TIMEZONE ]; then + TIMEZONE=Asia/Tokyo +fi + +if [ ! -v CI ]; then + CI=false +fi /debootstrap/debootstrap --second-stage @@ -31,36 +38,62 @@ apt install -y locales echo "$TIMEZONE" > /etc/timezone && \ dpkg-reconfigure -f noninteractive tzdata && \ - sed -i -e 's/# en_US.UTF-8 UTF-8/en_us.UTF-8 UTF-8/' /etc/locale.gen && \ + sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ echo 'LANG="en_US.UTF-8"' > /etc/default/locale && \ dpkg-reconfigure -f noninteractive locales && \ update-locale LANG=en_US.UTF-8 echo "brain" > /etc/hostname - - -echo root:root | chpasswd - -cat <> /etc/securetty -ttymxc0 -EOF - DEBIAN_FRONTEND=noninteractive \ apt install -y dialog sudo \ libjpeg-dev libfreetype6 libfreetype6-dev zlib1g-dev \ - xserver-xorg xserver-xorg-video-fbdev xserver-xorg-dev xorg-dev x11-apps \ - openbox obconf obmenu \ + xserver-xorg xserver-xorg-video-fbdev xserver-xorg-dev xserver-xorg-input-evdev xinput-calibrator xorg-dev x11-apps xinit \ + openbox obconf obmenu jwm \ weston xwayland \ - alsa-utils \ bash tmux vim htop \ - midori pcmanfm lxterminal xterm gnome-terminal fonts-noto-cjk \ - dbus udev build-essential flex bison pkg-config autotools-dev libtool autoconf automake device-tree-compiler\ + midori pcmanfm lxterminal xterm gnome-terminal fbterm uim-fep uim-anthy fonts-noto-cjk \ + dbus udev alsa-utils usbutils iw \ + build-essential flex bison pkg-config autotools-dev libtool autoconf automake device-tree-compiler \ python3 python3-dev python3-setuptools python3-wheel python3-pip python3-smbus \ - resolvconf net-tools ssh openssh-client avahi-daemon curl wget + resolvconf net-tools ssh openssh-client avahi-daemon curl wget git + +# Ly +apt install -y libpam0g-dev libxcb-xkb-dev +cd / +git clone https://github.com/nullgemm/ly.git +cd ly +make github +make +make install +cd / +rm -r ly +systemctl enable ly + +# Create editable xorg.conf.d +install -m 0777 -d /etc/X11/xorg.conf.d # Fix Midori launch failure sudo update-mime-database /usr/share/mime +# Setup users +adduser --gecos "" --disabled-password --home /home/user user +echo user:brain | chpasswd +echo "user ALL=(ALL:ALL) ALL" > /etc/sudoers.d/user +echo -e "127.0.1.1\tbrain" >> /etc/hosts + +echo root:root | chpasswd + +# Fix Xorg permission for non-root users +# https://unix.stackexchange.com/questions/315169/how-can-i-run-usr-bin-xorg-without-sudo +chown root:input /usr/lib/xorg/Xorg +chmod g+s /usr/lib/xorg/Xorg +usermod -a -G video user + +# Allow root login via UART +cat <> /etc/securetty +ttymxc0 +EOF + # Get wild cat < /etc/apt/sources.list deb http://deb.debian.org/debian buster main contrib non-free diff --git a/u-boot-brain b/u-boot-brain index 8f3049f..320491a 160000 --- a/u-boot-brain +++ b/u-boot-brain @@ -1 +1 @@ -Subproject commit 8f3049f7dc914b2dfbd29e214eb7666717f095e6 +Subproject commit 320491adf5cb306df1ed06fc13c52adc99a71ee3