mount/umount system target added
This commit is contained in:
parent
65b3d3cd75
commit
5dd5648681
12
Makefile
12
Makefile
|
@ -7,6 +7,18 @@ endef
|
||||||
base:
|
base:
|
||||||
$(call vinstall,base-system)
|
$(call vinstall,base-system)
|
||||||
|
|
||||||
|
mnt-system:
|
||||||
|
mount -t proc proc $(MNTDIR)/proc
|
||||||
|
mount -t sysfs sys $(MNTDIR)/sys
|
||||||
|
mount -o bind /dev $(MNTDIR)/dev
|
||||||
|
mount -t devpts pts $(MNTDIR)/dev/pts
|
||||||
|
|
||||||
|
umnt-system:
|
||||||
|
umount $(MNTDIR)/proc
|
||||||
|
umount $(MNTDIR)/sys
|
||||||
|
umount $(MNTDIR)/dev/pts
|
||||||
|
umount $(MNTDIR)/dev
|
||||||
|
|
||||||
tools:
|
tools:
|
||||||
$(call vinstall,base-devel git tcc wget vim-x11 tmux)
|
$(call vinstall,base-devel git tcc wget vim-x11 tmux)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue