-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload-image.sh
executable file
·28 lines (24 loc) · 916 Bytes
/
load-image.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
# Copyright (c) 2021 Jeremy Carter <jeremy@jeremycarter.ca>
#
# All uses of this project in part or in whole are governed
# by the terms of the license contained in the file titled
# "LICENSE" that's distributed along with the project, which
# can be found in the top-level directory of this project.
#
# If you don't agree to follow those terms or you won't
# follow them, you are not allowed to use this project or
# anything that's made with parts of it at all. The project
# is also depending on some third-party technologies, and
# some of those are governed by their own separate licenses,
# so furthermore, whenever legally possible, all license
# terms from all of the different technologies apply, with
# this project's license terms taking first priority.
# Runs this test program to check if gfx-hal is working:
#
# libnov/cmd/load-image
#
pwd="$PWD"
cd nov
./load-image.sh $@
cd "$pwd"