diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-09-13 09:20:38 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-09-13 17:33:02 +0200 |
commit | 327c985ce1b0e2809751abe612a03a1760b249aa (patch) | |
tree | 2e354d88a4cb12bdd719cb6e8901bbe96d07c715 /board | |
parent | 8bee59bb8fbb1a8dcaac4f2b386b5013ac08f19d (diff) |
configs/orangepipc: Use Linux 4.7.3
There's now an sun8i-h3-orangepi-pc dts, so we can use that and drop the
hack in the post-image script.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board')
-rwxr-xr-x | board/orangepi/orangepipc/post-image.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/orangepi/orangepipc/post-image.sh b/board/orangepi/orangepipc/post-image.sh index dbe151669..359b4c9e7 100755 --- a/board/orangepi/orangepipc/post-image.sh +++ b/board/orangepi/orangepipc/post-image.sh @@ -6,17 +6,9 @@ GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" -# As we now use the Linux v4.5-RC1 kernel no orangepi-pc dtb exists yet. -# However the orangepi-plus dtb has not much content, only mmc0 and uart -# which are equal to the pc version of the board, so we use it here. -mv ${BINARIES_DIR}/sun8i-h3-orangepi-plus.dtb ${BINARIES_DIR}/sun8i-h3-orangepi-pc.dtb - - genimage \ --rootpath "${TARGET_DIR}" \ --tmppath "${GENIMAGE_TMP}" \ --inputpath "${BINARIES_DIR}" \ --outputpath "${BINARIES_DIR}" \ --config "${GENIMAGE_CFG}" - -exit $? |