mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
19 lines
323 B
Bash
19 lines
323 B
Bash
|
|
#!/bin/sh
|
|
#
|
|
# SPDX-FileCopyrightText: 2024 Gábor Stefanik <netrolller.3d@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# Set up swap
|
|
|
|
. /steps/bootstrap.cfg
|
|
. /steps/env
|
|
|
|
if ! test -f /swap
|
|
then
|
|
echo "Making swap..."
|
|
dd if=/dev/zero of=/swap bs=1M count=${SWAP_SIZE}
|
|
mkswap /swap
|
|
fi
|
|
swapon /swap
|