mirror of
https://github.com/brain-hackers/buildbrain
synced 2025-04-04 14:17:27 +09:00
commit
5689b3a04e
6
Makefile
6
Makefile
@ -109,12 +109,12 @@ brainux:
|
|||||||
echo "Debootstrap is only available in Linux!"; \
|
echo "Debootstrap is only available in Linux!"; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
mkdir -p brainux
|
sudo mkdir -p brainux
|
||||||
@if [ "$(CI)" = "true" ]; then \
|
@if [ "$(CI)" = "true" ]; then \
|
||||||
echo "I'm in CI and debootstrap without cache."; \
|
echo "I'm in CI and debootstrap without cache."; \
|
||||||
sudo debootstrap --arch=armel --foreign buster brainux/; \
|
sudo debootstrap --arch=armel --foreign bullseye brainux/; \
|
||||||
else \
|
else \
|
||||||
sudo debootstrap --arch=armel --foreign buster brainux/ http://localhost:65432/debian/; \
|
sudo debootstrap --arch=armel --foreign bullseye brainux/ http://localhost:65432/debian/; \
|
||||||
fi
|
fi
|
||||||
sudo cp /usr/bin/qemu-arm-static brainux/usr/bin/
|
sudo cp /usr/bin/qemu-arm-static brainux/usr/bin/
|
||||||
sudo cp ./os-brainux/setup_brainux.sh brainux/
|
sudo cp ./os-brainux/setup_brainux.sh brainux/
|
||||||
|
@ -81,8 +81,8 @@ Build Linux
|
|||||||
1. Confirm that `linux-brain/arch/arm/boot/zImage` exists.
|
1. Confirm that `linux-brain/arch/arm/boot/zImage` exists.
|
||||||
|
|
||||||
|
|
||||||
Bootstrap Debian 10 (buster)
|
Bootstrap Debian 11 (bullseye)
|
||||||
----------------------------
|
------------------------------
|
||||||
|
|
||||||
1. Run `make ldefconfig lbuild`.
|
1. Run `make ldefconfig lbuild`.
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
PRETTY_NAME="Brainux GNU/Linux 10 (buster)"
|
PRETTY_NAME="Brainux GNU/Linux 11 (bullseye)"
|
||||||
NAME="Brainux GNU/Linux"
|
NAME="Brainux GNU/Linux"
|
||||||
VERSION_ID="10"
|
VERSION_ID="11"
|
||||||
VERSION="10 (buster)"
|
VERSION="11 (bullseye)"
|
||||||
VERSION_CODENAME=buster
|
VERSION_CODENAME=bullseye
|
||||||
ID=debian
|
ID=debian
|
||||||
HOME_URL="https://github.com/brain-hackers/README"
|
HOME_URL="https://github.com/brain-hackers/README"
|
||||||
SUPPORT_URL="https://github.com/brain-hackers/buildbrain"
|
SUPPORT_URL="https://github.com/brain-hackers/buildbrain"
|
||||||
|
@ -20,12 +20,12 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
cat <<EOF > /etc/apt/sources.list
|
cat <<EOF > /etc/apt/sources.list
|
||||||
deb http://${REPO}/debian buster main contrib non-free
|
deb http://${REPO}/debian bullseye main contrib non-free
|
||||||
deb-src http://${REPO}/debian buster main contrib non-free
|
deb-src http://${REPO}/debian bullseye main contrib non-free
|
||||||
deb http://${REPO}/debian buster-updates main contrib non-free
|
deb http://${REPO}/debian bullseye-updates main contrib non-free
|
||||||
deb-src http://${REPO}/debian buster-updates main contrib non-free
|
deb-src http://${REPO}/debian bullseye-updates main contrib non-free
|
||||||
deb http://${REPO_SECURITY}/debian-security buster/updates main contrib non-free
|
deb http://${REPO_SECURITY}/debian-security bullseye-security/updates main contrib non-free
|
||||||
deb-src http://${REPO_SECURITY}/debian-security buster/updates main contrib non-free
|
deb-src http://${REPO_SECURITY}/debian-security bullseye-security/updates main contrib non-free
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat <<EOF > /etc/apt/apt.conf.d/90-norecommend
|
cat <<EOF > /etc/apt/apt.conf.d/90-norecommend
|
||||||
@ -43,6 +43,8 @@ echo "$TIMEZONE" > /etc/timezone && \
|
|||||||
dpkg-reconfigure -f noninteractive locales && \
|
dpkg-reconfigure -f noninteractive locales && \
|
||||||
update-locale LANG=en_US.UTF-8
|
update-locale LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
LANG=en_US.UTF-8
|
||||||
|
|
||||||
rm /etc/localtime
|
rm /etc/localtime
|
||||||
ln -s /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
|
ln -s /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
|
||||||
|
|
||||||
@ -51,7 +53,7 @@ DEBIAN_FRONTEND=noninteractive \
|
|||||||
apt install -y dialog sudo \
|
apt install -y dialog sudo \
|
||||||
libjpeg-dev libfreetype6 libfreetype6-dev zlib1g-dev \
|
libjpeg-dev libfreetype6 libfreetype6-dev zlib1g-dev \
|
||||||
xserver-xorg xserver-xorg-video-fbdev xserver-xorg-dev xserver-xorg-input-evdev xinput-calibrator xorg-dev x11-apps xinit \
|
xserver-xorg xserver-xorg-video-fbdev xserver-xorg-dev xserver-xorg-input-evdev xinput-calibrator xorg-dev x11-apps xinit \
|
||||||
openbox obconf obmenu jwm \
|
jwm \
|
||||||
weston xwayland \
|
weston xwayland \
|
||||||
bash tmux vim htop \
|
bash tmux vim htop \
|
||||||
midori pcmanfm lxterminal xterm gnome-terminal fbterm uim-fep uim-anthy fonts-noto-cjk \
|
midori pcmanfm lxterminal xterm gnome-terminal fbterm uim-fep uim-anthy fonts-noto-cjk \
|
||||||
@ -104,11 +106,11 @@ EOF
|
|||||||
|
|
||||||
# Get wild
|
# Get wild
|
||||||
cat <<EOF > /etc/apt/sources.list
|
cat <<EOF > /etc/apt/sources.list
|
||||||
deb http://deb.debian.org/debian buster main contrib non-free
|
deb http://deb.debian.org/debian bullseye main contrib non-free
|
||||||
deb-src http://deb.debian.org/debian buster main contrib non-free
|
deb-src http://deb.debian.org/debian bullseye main contrib non-free
|
||||||
deb http://deb.debian.org/debian buster-updates main contrib non-free
|
deb http://deb.debian.org/debian bullseye-updates main contrib non-free
|
||||||
deb-src http://deb.debian.org/debian buster-updates main contrib non-free
|
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free
|
||||||
deb http://deb.debian.org/debian-security buster/updates main contrib non-free
|
deb http://deb.debian.org/debian-security bullseye-security/updates main contrib non-free
|
||||||
deb-src http://deb.debian.org/debian-security buster/updates main contrib non-free
|
deb-src http://deb.debian.org/debian-security bullseye-security/updates main contrib non-free
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user