summaryrefslogtreecommitdiffstats
path: root/fpga/ebaz4205/src/fs/boot/Makefile
diff options
context:
space:
mode:
authorroot <root@new-fish.medaka.james.internal>2026-01-16 18:05:48 +0000
committerroot <root@new-fish.medaka.james.internal>2026-01-16 18:05:48 +0000
commit3fd30876ca4e4b0e793ddf41f6c34150f729a97d (patch)
treef96202041800836e44162784b9c63d134cad7fe7 /fpga/ebaz4205/src/fs/boot/Makefile
parentd28fcdb4a278d95927b5e7ada52601ba151806ac (diff)
downloadhp_instrument_lcds-master.tar.gz
hp_instrument_lcds-master.tar.bz2
hp_instrument_lcds-master.zip
Reset phy in u-boot, use initrd for target, and support ro mount of the sd cardHEADmaster
Diffstat (limited to 'fpga/ebaz4205/src/fs/boot/Makefile')
-rw-r--r--fpga/ebaz4205/src/fs/boot/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/fpga/ebaz4205/src/fs/boot/Makefile b/fpga/ebaz4205/src/fs/boot/Makefile
new file mode 100644
index 0000000..ce1b042
--- /dev/null
+++ b/fpga/ebaz4205/src/fs/boot/Makefile
@@ -0,0 +1,12 @@
+default: uboot/vmlinuz uboot/initrd.img
+
+uboot/vmlinuz: /vmlinuz
+ mkimage -A ARM -O Linux -T Kernel -C none -d $< $@
+
+uboot/initrd.img: /initrd.img
+ mkimage -A ARM -O Linux -T RAMDisk -C none -d $< $@
+
+/initrd.img: /lib/modules/stamp
+ dracut --force
+
+