Skip to content

Commit

Permalink
through kernel compilation -- possibly ready to image with initrd for…
Browse files Browse the repository at this point in the history
… iso prep
  • Loading branch information
phanes committed Mar 20, 2023
1 parent 1f5d82d commit 0b5d868
Show file tree
Hide file tree
Showing 20 changed files with 11,352 additions and 21 deletions.
7 changes: 6 additions & 1 deletion Makefile
Expand Up @@ -89,6 +89,10 @@ build_stage4:
set -e
sudo /usr/bin/env -i bash -c ". ./project_config.sh && ${dir_make}/build_stage4.sh"

build_stage5:
set -e
sudo /usr/bin/env -i bash -c ". ./project_config.sh && ${dir_make}/build_stage5.sh"

master:
set -e
sudo /usr/bin/env -i bash -c ". ./project_config.sh && ${dir_make}/master.sh"
Expand Down Expand Up @@ -118,7 +122,8 @@ all:
make build_stage2 && \
make build_stage3 && \
make backup && \
make build_stage4
make build_stage4 && \
make build_stage5


# Remember, before you make clean or make purge_artifacts you MUST run
Expand Down
43 changes: 43 additions & 0 deletions configs/etc_inputrc
@@ -0,0 +1,43 @@
# do not bell on tab-completion
#set bell-style none

set meta-flag on
set input-meta on
set convert-meta off
set output-meta on

# Completed names which are symbolic links to
# directories have a slash appended.
set mark-symlinked-directories on

$if mode=emacs

# for linux console and RH/Debian xterm
"\e[1~": beginning-of-line
"\e[4~": end-of-line
# commented out keymappings for pgup/pgdown to reach begin/end of history
#"\e[5~": beginning-of-history
#"\e[6~": end-of-history
"\e[5~": history-search-backward
"\e[6~": history-search-forward
"\e[3~": delete-char
"\e[2~": overwrite-mode
"\e[5C": forward-word
"\e[5D": backward-word
"\e[1;5C": forward-word
"\e[1;5D": backward-word

# for rxvt
"\e[8~": end-of-line
"\eOc": forward-word
"\eOd": backward-word

# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
"\eOH": beginning-of-line
"\eOF": end-of-line

# for freebsd console
"\e[H": beginning-of-line
"\e[F": end-of-line
$endif

2 changes: 2 additions & 0 deletions configs/etc_locale.conf
@@ -0,0 +1,2 @@
LANG="en_US.UTF-8"

6 changes: 6 additions & 0 deletions configs/etc_modprobe.d_usb.conf
@@ -0,0 +1,6 @@
# Begin /etc/modprobe.d/usb.conf

install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true

# End /etc/modprobe.d/usb.conf
2 changes: 2 additions & 0 deletions configs/etc_shells
@@ -0,0 +1,2 @@
/bin/sh
/bin/bash
54 changes: 54 additions & 0 deletions configs/etc_systemd_logind.conf
@@ -0,0 +1,54 @@
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
#
# Entries in this file show the compile time defaults. Local configuration
# should be created by either modifying this file, or by creating "drop-ins" in
# the logind.conf.d/ subdirectory. The latter is generally recommended.
# Defaults can be restored by simply deleting this file and all drop-ins.
#
# Use 'systemd-analyze cat-config systemd/logind.conf' to display the full config.
#
# See logind.conf(5) for details.

[Login]
#NAutoVTs=6
#ReserveVT=6

# is it system init?
# is it service state management?
KillUserProcesses=no

#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#UserStopDelaySec=10
#HandlePowerKey=poweroff
#HandlePowerKeyLongPress=ignore
#HandleRebootKey=reboot
#HandleRebootKeyLongPress=poweroff
#HandleSuspendKey=suspend
#HandleSuspendKeyLongPress=hibernate
#HandleHibernateKey=hibernate
#HandleHibernateKeyLongPress=ignore
#HandleLidSwitch=suspend
#HandleLidSwitchExternalPower=suspend
#HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#RebootKeyIgnoreInhibited=no
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RuntimeDirectoryInodesMax=
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192
#StopIdleSessionSec=infinity

2 changes: 2 additions & 0 deletions configs/etc_systemd_system_getty@tty1.service.d_noclear.conf
@@ -0,0 +1,2 @@
[Service]
TTYVTDisallocate=no
3 changes: 3 additions & 0 deletions configs/etc_vconsole.conf
@@ -0,0 +1,3 @@
KEYMAP="us"
FONT="eurlatgr"

0 comments on commit 0b5d868

Please sign in to comment.