Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
baseinit: Fix dri issue again
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Feb 25, 2020
1 parent 38e4a71 commit 2ffa67e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/init/rc.boot
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ log "Mounting pseudo filesystems..."; {
ln -sf fd/0 /dev/stdin
ln -sf fd/1 /dev/stdout
ln -sf fd/2 /dev/stderr

# udev sometimes doesn't set this permission for whatever
# reason. Until we figure out why, let's do it ourselves.
chown root:video /dev/dri/*
}

log "Starting device manager..."; {
Expand Down Expand Up @@ -71,6 +67,10 @@ log "Starting device manager..."; {
esac
done
fi

# udev sometimes doesn't set this permission for whatever
# reason. Until we figure out why, let's do it ourselves.
chown root:video /dev/dri/*
}

log "Remounting rootfs as ro..."; {
Expand Down

0 comments on commit 2ffa67e

Please sign in to comment.