mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* extensions framework (née "fragments")
- this should actually change nothing at this point, just add capabilities
- the framework is implemented in lib/extensions.sh
- the "if function x exists then call x" replaced with call_extension_method()
- +inline documentation
- +compatibility names
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions framework; meta-extensions: auto-docs and sample extension gen
- 2 extensions dealing with extensibility itself
- detect-unused-extensions: shows which extensions are enabled, but never called.
- gen-sample-extension-docs: generates a sample empty extension & Markdown documentation for extensions
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* new extension methods and features via config variables in core Armbian
- `SKIP_EXTERNAL_TOOLCHAINS=yes` - does not download or use any linaro toolchains, only build host-installed ones
- `SKIP_BOOTSPLASH=yes` - does not patch kernel for splash file
- `EXTRA_BSP_NAME=xyz` - allows for BSP variants, useful for when extensions modify the BSP
- `EXTRA_ROOTFS_MIB_SIZE=x` - add x mib's to rootfs size, for use with very small images
- `KERNEL_EXTRA_TARGETS` - what extra targets to make kernel for, default to "modules dtbs"
- `BOOTCONFIG=none` - does not build nor install u-boot; also doesn't handle bootscripts et al
- `unset KERNELSOURCE` - does not build nor install kernel, nor build initrd, nor build nor install firmware
- `ARMHF_ARCH=skip` - does not add armhf to apt/dpkg, thus pure arm64
- `SKIP_ARMBIAN_REPO=yes` - results in armbian.list.disabled in the final image
- define `APT_EXTRA_DIST_PARAMS` with apt-cacher-ng options and use it for `PACKAGE_LIST_INSTALL/REMOVE` et al
- initial support for targeting x86/amd64 UEFI and BIOS
- some do's/don'ts for x86/amd64, like a different `UBUNTU_MIRROR` default
- GPT/EFI(ESP) partitions (fat, `UEFISIZE=256` to enable, mount `UEFI_MOUNT_POINT=/boot/efi`, first on disk but ends
up at `$uefipart`=15)
- GPT/BIOS partitions (fat, `BIOSSIZE=1` to enable, second on disk but ends up at partition 14)
- `UEFI_FS_LABEL="armbiefi"` - to set the FAT label for the EFI partition, visible in Win/Mac
- hard-requires gdisk package host-side
- add add_host_dependencies() extension method; fill `EXTRA_BUILD_DEPS="pkg pkg2"` to install to host before toolchains
download
- add pre_prepare_partitions() extension method, for custom partition size calculations
- add create_partition_table() extension method, used to do full-custom partitioning if `USE_HOOK_FOR_PARTITION=yes`
- add post_create_partitions() extension method, mostly for easy debugging
- add post_write_sdcard() extension method, where you can also set `SKIP_VERIFY=yes` to skip sdcard verification
- add post_install_kernel_debs() extension method.
- multiple fixes to bsp to avoid spurious errors when files are not where it expects
- v4: detect `update-initramfs` failure and abort build with useful message if it does
- v4: show useful stacktrace in `exit_with_error`
- if `ERROR_DEBUG_SHELL=yes`, drop into a shell before unmounting/deleting everything, so we can inspect what went wrong
- v4: display a message before `apt-get remove PACKAGE_LIST_BOARD_REMOVE` packages, so any errors while removing are easy to understand
- v4: preserve kernel .config's dates when copying
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions framework; refactor tool fetching/building into extensions
- a few examples of core refactoring using extensions
- sunxi-tools extension, enabled by 2 different sunxi family includes ("reuse" example)
- marvel-tools extension, enabled by 2 different mvebu family includes
- rkbin-tools extension, enabled by rockship64_common family include
- amlogic-fip/c2-blobs stuff refactored directly into meson64_common.inc ("single-use" example)
- removed the 'testings' fetch_from_repo completely since not used anywhere.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* .wip's for UEFI arm64 and UEFI/BIOS x86 via new GRUB extension
- v3: added `growroot`-awareness to `armbian-resize-filesystem`
- the partition-growing part of `armbian-resize-filesystem` does not deal correctly with the UEFI layout
- `growroot` is installed on UEFI images by default, that handles growing partition during initramfs
- now `armbian-resize-filesystem` handles `resize2fs` only, and works.
- v4: reworked UEFI board/family/include structure:
- use Distro's `linux-generic` kernel only for `current`
- `edge` now builds it's own pure-mainline `5.15.y` kernel, for both x86 and arm64
- `.config` taken from Ubuntu, probably needs tuning for EXTRAWIFI=yes et al
- v4: introduce `SKIP_KERNEL_SYMLINK=yes`, tested in `builddeb`
- to avoid symlinking kernel; u-boot likes it, but grub and flash-kernel hates it
- v5: many fixes
- v7: more small fixes.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* .wip for the RaspberryPi 4B via new flash-kernel extension
- this does not build it's own kernel "yet", but uses default linux-raspi kernel from Ubuntu
- flash-kernel is not really a bootloader
- it just prepares kernel et al a FAT partition for booting by the RPi4b bootloader
- flash-kernel is standard Debian package, but has only been tested on Ubuntu releases
- it is really only known-working since Hirsute release.
- Debian's rpi kernel is armhf only, so out of scope here, at least until we add source-built kernels.
- v3: fixed focal rootfs build. untested.
- v3: better variable names, preparing for source-built kernel.
- v5: new edge build with pure mainline kernel.
- v6: many fixes and some hacks for packaging and layout, also firmware (using Ubuntu's)
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Added first patch to edge x86 related to wifi drivers
* extensions: leave hostapd alone; remove hackish ext; block reentrancy
- package-list-utils does not belong in this PR
- grub or bcm2711 is not the place to remove hostapd
- block recursive enable_extension() calls, for now.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* gen-sample-extension-docs: fix: avoid counter in generated sample
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: dependencies: enable_extension() in extensions with a stack
- and better stacktraces, I hope
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Remove code from package list since we don't have it in repository
Adjust kernel config to disable driver that needs further polishing.
* Allow amd64 to build the same desktops as aarch64. We only have this limit for armhf, where some desktops don't work
* amd64: allow building amd64 on aarch64 with system toolchain
- conditionally add gcc-x86-64-linux-gnu to hostdeps
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* add libelf-dev directly to hostdeps (and Dockerfile), remove extension
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* packaging: remove SKIP_KERNEL_SYMLINK hack, fix the root cause
- which was the missing $image_name for non-arm64 & non-arm, so: x86 for example
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* grub: really obliterate u-boot stuff from BSP
- for now. soon we'll refactor u-boot so not have to do this
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* flash-kernel: really obliterate u-boot stuff from BSP
- for now. soon we'll refactor u-boot so not have to do this
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: add host_dependencies_ready() hook
- this passes FINAL_HOST_DEPS containing all hostdeps for the run after they're installed
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Add verification functions for correct selection.
* If UEFI Skip symlink creation
* Do not create dtb package for amd64
* Skip scripts folder cleaning if build process native.
Skip creating postinst prerm scripts for headers.
* Skip applying headers-debian-byteshift.patch if build native
* Fix architecture syntax as x86_64
* Revert "amd64: allow building amd64 on aarch64 with system toolchain"
This reverts commit 0c5ee20bb1.
* Compare architectures before starting compilation.
Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
* extensions: cleanups after fixes by the-Going
- packaging:
- there is _no need_ anymore for the symlink hack, CONFIG_EFI or no. But check is great, see below
- it's not `amd64` that has no DTB's, it's all UEFI, thus: `is_enabled CONFIG_EFI`, thanks!
- Explicitly disallow "reverse cross compile" in amd64.conf.
- whitespace-only-deletions: revert. we shall shellfmt the whole thing one day, but not today.
- fix a few syntax warnings in newly introduced code (floating `$ARCH` vs `"${ARCH}`) - blame shellcheck
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* packaging: fix: turns out a lot of boards have CONFIG_EFI=y, can't use that for dtb/no-dtb decision.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* grub: remove debug
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* firmware: allow installing `armbian-firmware-full`; make it really full
- can now use `BOARD_FIRMWARE_INSTALL="-full"` to install full firmware for the board. enable for UEFI.
- don't rely on KERNELSOURCE for firmware-related decisions. introduce `INSTALL_ARMBIAN_FIRMWARE` which defaults to `yes`
- rpi4b/flash-kernel: disable Armbian firmware; we need linux-firmware-raspi2, which conflicts.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: log to /${LOG_SUBPATH}/ instead of fixed /debug/
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: introduce cleanup_extension_manager() called by build-all-ng's unset_all()
- to reset/unset everything done by the the initializer, so build can run again
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: remove 'global' logging, for use with build_all_ng
- enable_extensions() will have to live on without logging to file. it's just too early.
- now init EXTENSION_MANAGER_TMP_DIR in initialize_extension_manager()
- now init EXTENSION_MANAGER_LOG_FILE in initialize_extension_manager()
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: build-all-ng.sh bugfix due to extension's debug to stdout
- extensions (among other things) can produce output to stdout when activated
- fix: check_hash() produced "idential" (sic, now changed to IDENTICAL) to stdout as a trigger
- debugging output got mixed with "idential", rendering hash cache void for families that used extensions
- eg: sunxi, others
- fix is to send stdout to the bitbucket when sourcing the board & arch config files
- proper fix would be stop using stdout in this case and use return code for check_hash()
- one day soon
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Add CI build targets
Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
Co-authored-by: The-going <48602507+The-going@users.noreply.github.com>
327 lines
13 KiB
Bash
327 lines
13 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2021 Igor Pecovnik, igor.pecovnik@gma**.com
|
|
#
|
|
# This file is licensed under the terms of the GNU General Public
|
|
# License version 2. This program is licensed "as is" without any
|
|
# warranty of any kind, whether express or implied.
|
|
#
|
|
# This file is a part of the Armbian build script
|
|
# https://github.com/armbian/build/
|
|
|
|
#
|
|
# Functions:
|
|
# create_board_package
|
|
|
|
|
|
|
|
|
|
create_board_package()
|
|
{
|
|
display_alert "Creating board support package for CLI" "$CHOSEN_ROOTFS" "info"
|
|
|
|
bsptempdir=$(mktemp -d)
|
|
chmod 700 ${bsptempdir}
|
|
trap "rm -rf \"${bsptempdir}\" ; exit 0" 0 1 2 3 15
|
|
local destination=${bsptempdir}/${RELEASE}/${BSP_CLI_PACKAGE_FULLNAME}
|
|
mkdir -p "${destination}"/DEBIAN
|
|
cd $destination
|
|
|
|
# copy general overlay from packages/bsp-cli
|
|
copy_all_packages_files_for "bsp-cli"
|
|
|
|
# install copy of boot script & environment file
|
|
if [[ "${BOOTCONFIG}" != "none" ]]; then
|
|
# @TODO: add extension method bsp_prepare_bootloader(), refactor into u-boot extension
|
|
local bootscript_src=${BOOTSCRIPT%%:*}
|
|
local bootscript_dst=${BOOTSCRIPT##*:}
|
|
mkdir -p "${destination}"/usr/share/armbian/
|
|
|
|
# create extlinux config file
|
|
if [[ $SRC_EXTLINUX != yes ]]; then
|
|
if [ -f "${USERPATCHES_PATH}/bootscripts/${bootscript_src}" ]; then
|
|
cp "${USERPATCHES_PATH}/bootscripts/${bootscript_src}" "${destination}/usr/share/armbian/${bootscript_dst}"
|
|
else
|
|
cp "${SRC}/config/bootscripts/${bootscript_src}" "${destination}/usr/share/armbian/${bootscript_dst}"
|
|
fi
|
|
[[ -n $BOOTENV_FILE && -f $SRC/config/bootenv/$BOOTENV_FILE ]] && \
|
|
cp "${SRC}/config/bootenv/${BOOTENV_FILE}" "${destination}"/usr/share/armbian/armbianEnv.txt
|
|
fi
|
|
|
|
# add configuration for setting uboot environment from userspace with: fw_setenv fw_printenv
|
|
if [[ -n $UBOOT_FW_ENV ]]; then
|
|
UBOOT_FW_ENV=($(tr ',' ' ' <<< "$UBOOT_FW_ENV"))
|
|
mkdir -p "${destination}"/etc
|
|
echo "# Device to access offset env size" > "${destination}"/etc/fw_env.config
|
|
echo "/dev/mmcblk0 ${UBOOT_FW_ENV[0]} ${UBOOT_FW_ENV[1]}" >> "${destination}"/etc/fw_env.config
|
|
fi
|
|
fi
|
|
|
|
# Replaces: base-files is needed to replace /etc/update-motd.d/ files on Xenial
|
|
# Replaces: unattended-upgrades may be needed to replace /etc/apt/apt.conf.d/50unattended-upgrades
|
|
# (distributions provide good defaults, so this is not needed currently)
|
|
# Depends: linux-base is needed for "linux-version" command in initrd cleanup script
|
|
# Depends: fping is needed for armbianmonitor to upload armbian-hardware-monitor.log
|
|
cat <<-EOF > "${destination}"/DEBIAN/control
|
|
Package: ${BSP_CLI_PACKAGE_NAME}
|
|
Version: $REVISION
|
|
Architecture: $ARCH
|
|
Maintainer: $MAINTAINER <$MAINTAINERMAIL>
|
|
Installed-Size: 1
|
|
Section: kernel
|
|
Priority: optional
|
|
Depends: bash, linux-base, u-boot-tools, initramfs-tools, lsb-release, fping
|
|
Provides: linux-${RELEASE}-root-legacy-$BOARD, linux-${RELEASE}-root-current-$BOARD, linux-${RELEASE}-root-edge-$BOARD
|
|
Suggests: armbian-config
|
|
Replaces: zram-config, base-files, armbian-tools-$RELEASE, linux-${RELEASE}-root-legacy-$BOARD (<< $REVISION~), linux-${RELEASE}-root-current-$BOARD (<< $REVISION~), linux-${RELEASE}-root-edge-$BOARD (<< $REVISION~)
|
|
Breaks: linux-${RELEASE}-root-legacy-$BOARD (<< $REVISION~), linux-${RELEASE}-root-current-$BOARD (<< $REVISION~), linux-${RELEASE}-root-edge-$BOARD (<< $REVISION~)
|
|
Recommends: bsdutils, parted, util-linux, toilet
|
|
Description: Tweaks for Armbian $RELEASE on $BOARD
|
|
EOF
|
|
|
|
# set up pre install script
|
|
cat <<-EOF > "${destination}"/DEBIAN/preinst
|
|
#!/bin/sh
|
|
|
|
# tell people to reboot at next login
|
|
[ "\$1" = "upgrade" ] && touch /var/run/.reboot_required
|
|
|
|
# convert link to file
|
|
if [ -L "/etc/network/interfaces" ]; then
|
|
|
|
cp /etc/network/interfaces /etc/network/interfaces.tmp
|
|
rm /etc/network/interfaces
|
|
mv /etc/network/interfaces.tmp /etc/network/interfaces
|
|
|
|
fi
|
|
|
|
# fixing ramdisk corruption when using lz4 compression method
|
|
sed -i "s/^COMPRESS=.*/COMPRESS=gzip/" /etc/initramfs-tools/initramfs.conf
|
|
|
|
# swap
|
|
grep -q vm.swappiness /etc/sysctl.conf
|
|
case \$? in
|
|
0)
|
|
sed -i 's/vm\.swappiness.*/vm.swappiness=100/' /etc/sysctl.conf
|
|
;;
|
|
*)
|
|
echo vm.swappiness=100 >>/etc/sysctl.conf
|
|
;;
|
|
esac
|
|
sysctl -p >/dev/null 2>&1
|
|
|
|
# disable deprecated services
|
|
[ -f "/etc/profile.d/activate_psd_user.sh" ] && rm /etc/profile.d/activate_psd_user.sh
|
|
[ -f "/etc/profile.d/check_first_login.sh" ] && rm /etc/profile.d/check_first_login.sh
|
|
[ -f "/etc/profile.d/check_first_login_reboot.sh" ] && rm /etc/profile.d/check_first_login_reboot.sh
|
|
[ -f "/etc/profile.d/ssh-title.sh" ] && rm /etc/profile.d/ssh-title.sh
|
|
[ -f "/etc/update-motd.d/10-header" ] && rm /etc/update-motd.d/10-header
|
|
[ -f "/etc/update-motd.d/30-sysinfo" ] && rm /etc/update-motd.d/30-sysinfo
|
|
[ -f "/etc/update-motd.d/35-tips" ] && rm /etc/update-motd.d/35-tips
|
|
[ -f "/etc/update-motd.d/40-updates" ] && rm /etc/update-motd.d/40-updates
|
|
[ -f "/etc/update-motd.d/98-autoreboot-warn" ] && rm /etc/update-motd.d/98-autoreboot-warn
|
|
[ -f "/etc/update-motd.d/99-point-to-faq" ] && rm /etc/update-motd.d/99-point-to-faq
|
|
[ -f "/etc/update-motd.d/80-esm" ] && rm /etc/update-motd.d/80-esm
|
|
[ -f "/etc/update-motd.d/80-livepatch" ] && rm /etc/update-motd.d/80-livepatch
|
|
[ -f "/etc/apt/apt.conf.d/02compress-indexes" ] && rm /etc/apt/apt.conf.d/02compress-indexes
|
|
[ -f "/etc/apt/apt.conf.d/02periodic" ] && rm /etc/apt/apt.conf.d/02periodic
|
|
[ -f "/etc/apt/apt.conf.d/no-languages" ] && rm /etc/apt/apt.conf.d/no-languages
|
|
[ -f "/etc/init.d/armhwinfo" ] && rm /etc/init.d/armhwinfo
|
|
[ -f "/etc/logrotate.d/armhwinfo" ] && rm /etc/logrotate.d/armhwinfo
|
|
[ -f "/etc/init.d/firstrun" ] && rm /etc/init.d/firstrun
|
|
[ -f "/etc/init.d/resize2fs" ] && rm /etc/init.d/resize2fs
|
|
[ -f "/lib/systemd/system/firstrun-config.service" ] && rm /lib/systemd/system/firstrun-config.service
|
|
[ -f "/lib/systemd/system/firstrun.service" ] && rm /lib/systemd/system/firstrun.service
|
|
[ -f "/lib/systemd/system/resize2fs.service" ] && rm /lib/systemd/system/resize2fs.service
|
|
[ -f "/usr/lib/armbian/apt-updates" ] && rm /usr/lib/armbian/apt-updates
|
|
[ -f "/usr/lib/armbian/firstrun-config.sh" ] && rm /usr/lib/armbian/firstrun-config.sh
|
|
# fix for https://bugs.launchpad.net/ubuntu/+source/lightdm-gtk-greeter/+bug/1897491
|
|
[ -d "/var/lib/lightdm" ] && (chown -R lightdm:lightdm /var/lib/lightdm ; chmod 0750 /var/lib/lightdm)
|
|
exit 0
|
|
EOF
|
|
|
|
chmod 755 "${destination}"/DEBIAN/preinst
|
|
|
|
# postrm script
|
|
cat <<-EOF > "${destination}"/DEBIAN/postrm
|
|
#!/bin/sh
|
|
if [ remove = "\$1" ] || [ abort-install = "\$1" ]; then
|
|
|
|
systemctl disable armbian-hardware-monitor.service armbian-hardware-optimize.service >/dev/null 2>&1
|
|
systemctl disable armbian-zram-config.service armbian-ramlog.service >/dev/null 2>&1
|
|
|
|
fi
|
|
exit 0
|
|
EOF
|
|
|
|
chmod 755 "${destination}"/DEBIAN/postrm
|
|
|
|
# set up post install script
|
|
cat <<-EOF > "${destination}"/DEBIAN/postinst
|
|
#!/bin/sh
|
|
#
|
|
# ${BOARD} BSP post installation script
|
|
#
|
|
|
|
[ -f /etc/lib/systemd/system/armbian-ramlog.service ] && systemctl --no-reload enable armbian-ramlog.service
|
|
|
|
# check if it was disabled in config and disable in new service
|
|
if [ -n "\$(grep -w '^ENABLED=false' /etc/default/log2ram 2> /dev/null)" ]; then
|
|
|
|
sed -i "s/^ENABLED=.*/ENABLED=false/" /etc/default/armbian-ramlog
|
|
|
|
fi
|
|
|
|
# fix boot delay "waiting for suspend/resume device"
|
|
if [ -f "/etc/initramfs-tools/initramfs.conf" ]; then
|
|
|
|
if ! grep --quiet "RESUME=none" /etc/initramfs-tools/initramfs.conf; then
|
|
echo "RESUME=none" >> /etc/initramfs-tools/initramfs.conf
|
|
fi
|
|
|
|
fi
|
|
|
|
EOF
|
|
# install bootscripts if they are not present. Fix upgrades from old images
|
|
if [[ $FORCE_BOOTSCRIPT_UPDATE == yes ]]; then
|
|
cat <<-EOF >> "${destination}"/DEBIAN/postinst
|
|
if [ true ]; then
|
|
|
|
# this package recreate boot scripts
|
|
EOF
|
|
else
|
|
cat <<-EOF >> "${destination}"/DEBIAN/postinst
|
|
if [ ! -f /boot/$bootscript_dst ]; then
|
|
|
|
# if boot script does not exits its recreated
|
|
EOF
|
|
fi
|
|
cat <<-EOF >> "${destination}"/DEBIAN/postinst
|
|
# move bootscript to /usr/share/armbian
|
|
# create a backup
|
|
[ -f /etc/armbian-release ] && . /etc/armbian-release
|
|
[ -z \${VERSION} ] && VERSION=$(echo \`date +%s\`)
|
|
if [ -f /boot/$bootscript_dst ]; then
|
|
cp /boot/$bootscript_dst /usr/share/armbian/${bootscript_dst}-\${VERSION} >/dev/null 2>&1
|
|
echo "NOTE: You can find previous bootscript versions in /usr/share/armbian !"
|
|
fi
|
|
|
|
# cleanup old bootscript backup
|
|
ls /usr/share/armbian/boot.cmd-* >/dev/null 2>&1 | head -n -5 | xargs rm -f --
|
|
ls /usr/share/armbian/boot.ini-* >/dev/null 2>&1 | head -n -5 | xargs rm -f --
|
|
|
|
echo "Recreating boot script"
|
|
cp /usr/share/armbian/$bootscript_dst /boot >/dev/null 2>&1
|
|
rootdev=\$(sed -e 's/^.*root=//' -e 's/ .*\$//' < /proc/cmdline)
|
|
rootfstype=\$(sed -e 's/^.*rootfstype=//' -e 's/ .*$//' < /proc/cmdline)
|
|
|
|
# recreate armbianEnv.txt if it and extlinux does not exists
|
|
if [ ! -f /boot/armbianEnv.txt ] && [ ! -f /boot/extlinux/extlinux.conf ]; then
|
|
cp /usr/share/armbian/armbianEnv.txt /boot >/dev/null 2>&1
|
|
echo "rootdev="\$rootdev >> /boot/armbianEnv.txt
|
|
echo "rootfstype="\$rootfstype >> /boot/armbianEnv.txt
|
|
fi
|
|
|
|
[ -f /boot/boot.ini ] && sed -i "s/setenv rootdev.*/setenv rootdev \\"\$rootdev\\"/" /boot/boot.ini
|
|
[ -f /boot/boot.ini ] && sed -i "s/setenv rootfstype.*/setenv rootfstype \\"\$rootfstype\\"/" /boot/boot.ini
|
|
[ -f /boot/boot.cmd ] && mkimage -C none -A arm -T script -d /boot/boot.cmd /boot/boot.scr >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
[ ! -f "/etc/network/interfaces" ] && [ -f "/etc/network/interfaces.default" ] && cp /etc/network/interfaces.default /etc/network/interfaces
|
|
ln -sf /var/run/motd /etc/motd
|
|
rm -f /etc/update-motd.d/00-header /etc/update-motd.d/10-help-text
|
|
|
|
if [ ! -f "/etc/default/armbian-motd" ]; then
|
|
mv /etc/default/armbian-motd.dpkg-dist /etc/default/armbian-motd
|
|
fi
|
|
if [ ! -f "/etc/default/armbian-ramlog" ] && [ -f /etc/default/armbian-ramlog.dpkg-dist ]; then
|
|
mv /etc/default/armbian-ramlog.dpkg-dist /etc/default/armbian-ramlog
|
|
fi
|
|
if [ ! -f "/etc/default/armbian-zram-config" ] && [ -f /etc/default/armbian-zram-config.dpkg-dist ]; then
|
|
mv /etc/default/armbian-zram-config.dpkg-dist /etc/default/armbian-zram-config
|
|
fi
|
|
|
|
if [ -L "/usr/lib/chromium-browser/master_preferences.dpkg-dist" ]; then
|
|
mv /usr/lib/chromium-browser/master_preferences.dpkg-dist /usr/lib/chromium-browser/master_preferences
|
|
fi
|
|
|
|
sed -i "s/^PRETTY_NAME=.*/PRETTY_NAME=\"${VENDOR} $REVISION "${RELEASE^}"\"/" /etc/os-release
|
|
echo "${VENDOR} ${REVISION} ${RELEASE^} \\l \n" > /etc/issue
|
|
echo "${VENDOR} ${REVISION} ${RELEASE^}" > /etc/issue.net
|
|
|
|
systemctl --no-reload enable armbian-hardware-monitor.service armbian-hardware-optimize.service armbian-zram-config.service >/dev/null 2>&1
|
|
exit 0
|
|
EOF
|
|
|
|
chmod 755 "${destination}"/DEBIAN/postinst
|
|
|
|
# won't recreate files if they were removed by user
|
|
# TODO: Add proper handling for updated conffiles
|
|
#cat <<-EOF > "${destination}"/DEBIAN/conffiles
|
|
#EOF
|
|
|
|
# copy common files from a premade directory structure
|
|
rsync -a ${SRC}/packages/bsp/common/* ${destination}
|
|
|
|
# trigger uInitrd creation after installation, to apply
|
|
# /etc/initramfs/post-update.d/99-uboot
|
|
cat <<-EOF > "${destination}"/DEBIAN/triggers
|
|
activate update-initramfs
|
|
EOF
|
|
|
|
# read distribution support status
|
|
set_distribution_status
|
|
|
|
# armhwinfo, firstrun, armbianmonitor, etc. config file
|
|
cat <<-EOF > "${destination}"/etc/armbian-release
|
|
# PLEASE DO NOT EDIT THIS FILE
|
|
BOARD=$BOARD
|
|
BOARD_NAME="$BOARD_NAME"
|
|
BOARDFAMILY=${BOARDFAMILY}
|
|
BUILD_REPOSITORY_URL=${BUILD_REPOSITORY_URL}
|
|
BUILD_REPOSITORY_COMMIT=${BUILD_REPOSITORY_COMMIT}
|
|
DISTRIBUTION_CODENAME=${RELEASE}
|
|
DISTRIBUTION_STATUS=${DISTRIBUTION_STATUS}
|
|
VERSION=$REVISION
|
|
LINUXFAMILY=$LINUXFAMILY
|
|
ARCH=$ARCHITECTURE
|
|
IMAGE_TYPE=$IMAGE_TYPE
|
|
BOARD_TYPE=$BOARD_TYPE
|
|
INITRD_ARCH=$INITRD_ARCH
|
|
KERNEL_IMAGE_TYPE=$KERNEL_IMAGE_TYPE
|
|
EOF
|
|
|
|
if [[ $BUILD_DESKTOP == yes ]]; then
|
|
cat <<-EOF >> "${destination}"/etc/armbian-release
|
|
DESKTOP=$DESKTOP_ENVIRONMENT
|
|
EOF
|
|
fi
|
|
|
|
# this is required for NFS boot to prevent deconfiguring the network on shutdown
|
|
sed -i 's/#no-auto-down/no-auto-down/g' "${destination}"/etc/network/interfaces.default
|
|
|
|
# execute $LINUXFAMILY-specific tweaks
|
|
[[ $(type -t family_tweaks_bsp) == function ]] && family_tweaks_bsp
|
|
|
|
call_extension_method "post_family_tweaks_bsp" << 'POST_FAMILY_TWEAKS_BSP'
|
|
*family_tweaks_bsp overrrides what is in the config, so give it a chance to override the family tweaks*
|
|
This should be implemented by the config to tweak the BSP, after the board or family has had the chance to.
|
|
POST_FAMILY_TWEAKS_BSP
|
|
|
|
# add some summary to the image
|
|
fingerprint_image "${destination}/etc/armbian.txt"
|
|
|
|
# fixing permissions (basic), reference: dh_fixperms
|
|
find "${destination}" -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0
|
|
find "${destination}" ! -type l -print0 2>/dev/null | xargs -0r chmod 'go=rX,u+rw,a-s'
|
|
|
|
# create board DEB file
|
|
fakeroot dpkg-deb -b -Z${DEB_COMPRESS} "${destination}" "${destination}.deb" >> "${DEST}"/${LOG_SUBPATH}/output.log 2>&1
|
|
mkdir -p "${DEB_STORAGE}/${RELEASE}/"
|
|
rsync --remove-source-files -rq "${destination}.deb" "${DEB_STORAGE}/${RELEASE}/"
|
|
|
|
# cleanup
|
|
rm -rf ${bsptempdir}
|
|
}
|