mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
52 lines
1.4 KiB
Bash
Executable File
52 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
ROOT_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw $ROOT_PASSWORD`"
|
|
USER_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw $USER_PASSWORD`"
|
|
|
|
add_user root "$ROOT_PWD" 0 0 "Root User" "/storage" "/bin/sh"
|
|
add_group root 0
|
|
add_group users 100
|
|
|
|
add_user $USER_NAME "$USER_PWD" 1000 1000 "User" "/storage" "/bin/sh"
|
|
add_group $USER_GROUP 1000
|
|
|
|
cp -PR $BUILD/busybox*/_install-system/* $INSTALL
|
|
echo "chmod 4755 $INSTALL/bin/busybox" >> $FAKEROOT_SCRIPT
|
|
|
|
mkdir -p $INSTALL/bin
|
|
cp $PKG_DIR/scripts/lsb-release $INSTALL/bin/
|
|
|
|
mkdir -p $INSTALL/sbin
|
|
cp $PKG_DIR/scripts/init $INSTALL/sbin/
|
|
|
|
mkdir -p $INSTALL/etc
|
|
cp $PKG_DIR/config/profile $INSTALL/etc
|
|
|
|
# /etc/fstab is needed by...
|
|
touch $INSTALL/etc/fstab
|
|
|
|
# /etc/resolve.conf and /etc/hosts must be writeable
|
|
ln -sf /var/cache/hosts $INSTALL/etc/hosts
|
|
ln -sf /var/cache/resolv.conf $INSTALL/etc/resolv.conf
|
|
|
|
# /etc/mtab is needed by udisks etc...
|
|
ln -sf /proc/self/mounts $INSTALL/etc/mtab
|
|
|
|
# create /etc/hostname
|
|
echo $HOSTNAME > $INSTALL/etc/hostname
|
|
|
|
# create /etc/issue
|
|
echo $GREATING0 > $INSTALL/etc/issue
|
|
echo $GREATING1 >> $INSTALL/etc/issue
|
|
echo $GREATING2 >> $INSTALL/etc/issue
|
|
echo $GREATING3 >> $INSTALL/etc/issue
|
|
echo $GREATING4 >> $INSTALL/etc/issue
|
|
|
|
mkdir -p $INSTALL/etc/modprobe.d
|
|
cp $PKG_DIR/modprobe.d/* $INSTALL/etc/modprobe.d
|
|
|
|
# add user modprobe.d dir
|
|
mkdir -p $INSTALL/usr/config/modprobe.d
|